File tree Expand file tree Collapse file tree 4 files changed +21
-9
lines changed Expand file tree Collapse file tree 4 files changed +21
-9
lines changed Original file line number Diff line number Diff line change 1
1
<!DOCTYPE html>
2
2
3
- <!-- http ://angrytools.com/bootstrap/editor/ -->
3
+ <!-- https ://angrytools.com/bootstrap/editor/ -->
4
4
5
5
< html lang ="en ">
6
6
< head >
Original file line number Diff line number Diff line change 3
3
<!--
4
4
References:
5
5
* https://en.wikipedia.org/wiki/Internet_Information_Services
6
- * http ://distrowatch.com
6
+ * https ://distrowatch.com
7
7
-->
8
8
9
9
<root >
97
97
<info type =" Linux" distrib =" CentOS" release =" 8" />
98
98
</regexp >
99
99
100
+ <regexp value =" Apache/2\.4\.48 \(CentOS\)" >
101
+ <info type =" Linux" distrib =" CentOS" release =" 9" />
102
+ </regexp >
103
+
100
104
<!-- Apache: Debian -->
101
105
102
106
<regexp value =" Apache/1\.0\.5 \(Unix\) Debian/GNU" >
444
448
<info type =" FreeBSD" release =" 11.3" />
445
449
</regexp >
446
450
451
+ <regexp value =" Apache/2\.4\.51 \(FreeBSD\)" >
452
+ <info type =" FreeBSD" release =" 12.3" />
453
+ </regexp >
454
+
447
455
<regexp value =" Apache/2\.4\.46 \(FreeBSD\)" >
448
- <info type =" FreeBSD" release =" 12.2 " />
456
+ <info type =" FreeBSD" release =" 13.0 " />
449
457
</regexp >
450
458
451
459
<!-- Apache: Mandrake / Mandriva -->
764
772
</regexp >
765
773
766
774
<regexp value =" Apache/2\.4\.43 \(Linux/SuSE\)" >
767
- <info type =" Linux" distrib =" SuSE" release =" 15.2 " />
775
+ <info type =" Linux" distrib =" SuSE" release =" 15.3 " />
768
776
</regexp >
769
777
770
778
<!-- Apache: Ubuntu -->
869
877
<info type =" Linux" distrib =" Ubuntu" release =" 19.10|20.04|20.10" codename =" eoan|focal" />
870
878
</regexp >
871
879
880
+ <regexp value =" Apache/2\.4\.46 \(Ubuntu\)" >
881
+ <info type =" Linux" distrib =" Ubuntu" release =" 21.04|21.10" codename =" eoan|focal" />
882
+ </regexp >
883
+
872
884
<!-- Nginx -->
873
885
874
886
<regexp value =" nginx$" >
Original file line number Diff line number Diff line change 20
20
from thirdparty .six import unichr as _unichr
21
21
22
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
- VERSION = "1.6.3.9 "
23
+ VERSION = "1.6.3.10 "
24
24
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
25
25
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
26
26
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
698
698
FORCE_COOKIE_EXPIRATION_TIME = "9999999999"
699
699
700
700
# Github OAuth token used for creating an automatic Issue for unhandled exceptions
701
- GITHUB_REPORT_OAUTH_TOKEN = "NTYzYjhmZWJjYzc0Njg2ODJhNzhmNDg1YzM0YzlkYjk3N2JiMzE3Nw "
701
+ GITHUB_REPORT_OAUTH_TOKEN = "Z2hwX2FOMDdpUWx0NDg0ak85QW4yU1pSQjhtazhBaVVlRzNaMUxmMA "
702
702
703
703
# Skip unforced HashDB flush requests below the threshold number of cached items
704
704
HASHDB_FLUSH_THRESHOLD = 32
Original file line number Diff line number Diff line change @@ -383,17 +383,17 @@ def main():
383
383
raise SystemExit
384
384
385
385
elif all (_ in excMsg for _ in ("pymysql" , "configparser" )):
386
- errMsg = "wrong initialization of pymsql detected (using Python3 dependencies)"
386
+ errMsg = "wrong initialization of ' pymsql' detected (using Python3 dependencies)"
387
387
logger .critical (errMsg )
388
388
raise SystemExit
389
389
390
390
elif all (_ in excMsg for _ in ("ntlm" , "socket.error, err" , "SyntaxError" )):
391
- errMsg = "wrong initialization of python-ntlm detected (using Python2 syntax)"
391
+ errMsg = "wrong initialization of ' python-ntlm' detected (using Python2 syntax)"
392
392
logger .critical (errMsg )
393
393
raise SystemExit
394
394
395
395
elif all (_ in excMsg for _ in ("drda" , "to_bytes" )):
396
- errMsg = "wrong initialization of drda detected (using Python3 syntax)"
396
+ errMsg = "wrong initialization of ' drda' detected (using Python3 syntax)"
397
397
logger .critical (errMsg )
398
398
raise SystemExit
399
399
You can’t perform that action at this time.
0 commit comments