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 11<!DOCTYPE html>
22
3- <!-- http ://angrytools.com/bootstrap/editor/ -->
3+ <!-- https ://angrytools.com/bootstrap/editor/ -->
44
55< html lang ="en ">
66< head >
Original file line number Diff line number Diff line change 33<!--
44 References:
55 * https://en.wikipedia.org/wiki/Internet_Information_Services
6- * http ://distrowatch.com
6+ * https ://distrowatch.com
77-->
88
99<root >
9797 <info type =" Linux" distrib =" CentOS" release =" 8" />
9898 </regexp >
9999
100+ <regexp value =" Apache/2\.4\.48 \(CentOS\)" >
101+ <info type =" Linux" distrib =" CentOS" release =" 9" />
102+ </regexp >
103+
100104 <!-- Apache: Debian -->
101105
102106 <regexp value =" Apache/1\.0\.5 \(Unix\) Debian/GNU" >
444448 <info type =" FreeBSD" release =" 11.3" />
445449 </regexp >
446450
451+ <regexp value =" Apache/2\.4\.51 \(FreeBSD\)" >
452+ <info type =" FreeBSD" release =" 12.3" />
453+ </regexp >
454+
447455 <regexp value =" Apache/2\.4\.46 \(FreeBSD\)" >
448- <info type =" FreeBSD" release =" 12.2 " />
456+ <info type =" FreeBSD" release =" 13.0 " />
449457 </regexp >
450458
451459 <!-- Apache: Mandrake / Mandriva -->
764772 </regexp >
765773
766774 <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 " />
768776 </regexp >
769777
770778 <!-- Apache: Ubuntu -->
869877 <info type =" Linux" distrib =" Ubuntu" release =" 19.10|20.04|20.10" codename =" eoan|focal" />
870878 </regexp >
871879
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+
872884 <!-- Nginx -->
873885
874886 <regexp value =" nginx$" >
Original file line number Diff line number Diff line change 2020from thirdparty .six import unichr as _unichr
2121
2222# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23- VERSION = "1.6.3.9 "
23+ VERSION = "1.6.3.10 "
2424TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2525TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2626VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
698698FORCE_COOKIE_EXPIRATION_TIME = "9999999999"
699699
700700# Github OAuth token used for creating an automatic Issue for unhandled exceptions
701- GITHUB_REPORT_OAUTH_TOKEN = "NTYzYjhmZWJjYzc0Njg2ODJhNzhmNDg1YzM0YzlkYjk3N2JiMzE3Nw "
701+ GITHUB_REPORT_OAUTH_TOKEN = "Z2hwX2FOMDdpUWx0NDg0ak85QW4yU1pSQjhtazhBaVVlRzNaMUxmMA "
702702
703703# Skip unforced HashDB flush requests below the threshold number of cached items
704704HASHDB_FLUSH_THRESHOLD = 32
Original file line number Diff line number Diff line change @@ -383,17 +383,17 @@ def main():
383383 raise SystemExit
384384
385385 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)"
387387 logger .critical (errMsg )
388388 raise SystemExit
389389
390390 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)"
392392 logger .critical (errMsg )
393393 raise SystemExit
394394
395395 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)"
397397 logger .critical (errMsg )
398398 raise SystemExit
399399
You can’t perform that action at this time.
0 commit comments