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

Skip to content

Commit 8e8ae52

Browse files
committed
Minor text update
1 parent e2cc956 commit 8e8ae52

3 files changed

Lines changed: 9 additions & 9 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.2.11"
22+
VERSION = "1.2.2.12"
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/deps.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def checkDependencies():
2525
if not hasattr(pymssql, "__version__") or pymssql.__version__ < "1.0.2":
2626
warnMsg = "'%s' third-party library must be " % data[1]
2727
warnMsg += "version >= 1.0.2 to work properly. "
28-
warnMsg += "Download from %s" % data[2]
28+
warnMsg += "Download from '%s'" % data[2]
2929
logger.warn(warnMsg)
3030
elif dbmsName == DBMS.MYSQL:
3131
__import__("pymysql")
@@ -49,7 +49,7 @@ def checkDependencies():
4949
except:
5050
warnMsg = "sqlmap requires '%s' third-party library " % data[1]
5151
warnMsg += "in order to directly connect to the DBMS "
52-
warnMsg += "'%s'. Download from %s" % (dbmsName, data[2])
52+
warnMsg += "'%s'. Download from '%s'" % (dbmsName, data[2])
5353
logger.warn(warnMsg)
5454
missing_libraries.add(data[1])
5555

@@ -65,7 +65,7 @@ def checkDependencies():
6565
except ImportError:
6666
warnMsg = "sqlmap requires 'python-impacket' third-party library for "
6767
warnMsg += "out-of-band takeover feature. Download from "
68-
warnMsg += "http://code.google.com/p/impacket/"
68+
warnMsg += "'http://code.google.com/p/impacket/'"
6969
logger.warn(warnMsg)
7070
missing_libraries.add('python-impacket')
7171

@@ -76,7 +76,7 @@ def checkDependencies():
7676
except ImportError:
7777
warnMsg = "sqlmap requires 'python-ntlm' third-party library "
7878
warnMsg += "if you plan to attack a web application behind NTLM "
79-
warnMsg += "authentication. Download from http://code.google.com/p/python-ntlm/"
79+
warnMsg += "authentication. Download from 'http://code.google.com/p/python-ntlm/'"
8080
logger.warn(warnMsg)
8181
missing_libraries.add('python-ntlm')
8282

@@ -87,7 +87,7 @@ def checkDependencies():
8787
except ImportError:
8888
warnMsg = "sqlmap requires 'websocket-client' third-party library "
8989
warnMsg += "if you plan to attack a web application using WebSocket. "
90-
warnMsg += "Download from https://pypi.python.org/pypi/websocket-client/"
90+
warnMsg += "Download from 'https://pypi.python.org/pypi/websocket-client/'"
9191
logger.warn(warnMsg)
9292
missing_libraries.add('websocket-client')
9393

@@ -101,7 +101,7 @@ def checkDependencies():
101101
warnMsg += "be able to take advantage of the sqlmap TAB "
102102
warnMsg += "completion and history support features in the SQL "
103103
warnMsg += "shell and OS shell. Download from "
104-
warnMsg += "http://ipython.scipy.org/moin/PyReadline/Intro"
104+
warnMsg += "'http://ipython.scipy.org/moin/PyReadline/Intro'"
105105
logger.warn(warnMsg)
106106
missing_libraries.add('python-pyreadline')
107107

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ ffa5f01f39b17c8d73423acca6cfe86a lib/core/readlineng.py
4646
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4747
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
4848
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
49-
5c1731dff66559f45f9f6ab7d85335df lib/core/settings.py
49+
fea9bf09e60f66f4f0b1e9cac64dd842 lib/core/settings.py
5050
d0adc28a38e43a787df4471f7f027413 lib/core/shell.py
5151
63491be462c515a1a3880c27c2acc4a2 lib/core/subprocessng.py
5252
505aaa61e1bba3c3d4567c3e667699e3 lib/core/target.py
@@ -101,7 +101,7 @@ c497003ecf231d03a311a816a6b3b753 lib/techniques/union/test.py
101101
e4146464cf968d4015a52cb8c10e3da5 lib/utils/api.py
102102
37dfb641358669f62c2acedff241348b lib/utils/brute.py
103103
a34c4fd2e7d78c5dfdd9eeccb079fb1c lib/utils/crawler.py
104-
985c737cd8a6a722160c55cf5ee224f4 lib/utils/deps.py
104+
69c25da85a3a71a9798804075cdfd62b lib/utils/deps.py
105105
a6d6888e14a7c11f0884c8cc18489caa lib/utils/getch.py
106106
7af29f61302c8693cd6436d4b69e22d3 lib/utils/har.py
107107
9bd8fbfb9c25ee685c97b260331e7165 lib/utils/hashdb.py

0 commit comments

Comments
 (0)