Skip to content

Commit dd55d97

Browse files
committed
Minor updates
1 parent 445d69f commit dd55d97

File tree

4 files changed

+21
-9
lines changed

4 files changed

+21
-9
lines changed

data/html/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html>
22

3-
<!-- http://angrytools.com/bootstrap/editor/ -->
3+
<!-- https://angrytools.com/bootstrap/editor/ -->
44

55
<html lang="en">
66
<head>

data/xml/banner/server.xml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!--
44
References:
55
* https://en.wikipedia.org/wiki/Internet_Information_Services
6-
* http://distrowatch.com
6+
* https://distrowatch.com
77
-->
88

99
<root>
@@ -97,6 +97,10 @@
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">
@@ -444,8 +448,12 @@
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 -->
@@ -764,7 +772,7 @@
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 -->
@@ -869,6 +877,10 @@
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$">

lib/core/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from 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"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
@@ -698,7 +698,7 @@
698698
FORCE_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
704704
HASHDB_FLUSH_THRESHOLD = 32

sqlmap.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)