Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 72ff6e2

Browse files
committed
Minor wording update
1 parent 717c451 commit 72ff6e2

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.2.6.30"
22+
VERSION = "1.2.6.32"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/utils/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ def server(host=RESTAPI_DEFAULT_ADDRESS, port=RESTAPI_DEFAULT_PORT, adapter=REST
687687
except ImportError:
688688
if adapter.lower() not in server_names:
689689
errMsg = "Adapter '%s' is unknown. " % adapter
690-
errMsg += "(Note: available adapters '%s')" % ', '.join(sorted(server_names.keys()))
690+
errMsg += "List of supported adapters: %s" % ', '.join(sorted(server_names.keys()))
691691
else:
692692
errMsg = "Server support for adapter '%s' is not installed on this system " % adapter
693693
errMsg += "(Note: you can try to install it with 'sudo apt-get install python-%s' or 'sudo pip install %s')" % (adapter, adapter)

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
4848
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4949
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5050
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
51-
4a7888756dc009a582de9f4ed7dfd683 lib/core/settings.py
51+
09e31da3cc7ba29d6d2cf251284df707 lib/core/settings.py
5252
0dfc2ed40adf72e302291f6ecd4406f6 lib/core/shell.py
5353
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5454
36bd2dc292c0e10e39bd9c43b77fe1bc lib/core/target.py
@@ -100,7 +100,7 @@ f5fb02487edaf9adaa81d54324c84f8f lib/techniques/error/use.py
100100
1e5532ede194ac9c083891c2f02bca93 lib/techniques/union/__init__.py
101101
94d7a22bb6725a91e84ba2cd9973e96d lib/techniques/union/test.py
102102
11ecf2effbe9f40b361843d546c3c521 lib/techniques/union/use.py
103-
ecedf10e09525ac4be07bd27cbd31d81 lib/utils/api.py
103+
bec403b9c2816c96ae4cac87dff70bbe lib/utils/api.py
104104
37dfb641358669f62c2acedff241348b lib/utils/brute.py
105105
31b1e7eb489eac837db6a2bc1dcb7da7 lib/utils/crawler.py
106106
de9620f03231d8329ee8434884b6bacd lib/utils/deps.py

0 commit comments

Comments
 (0)