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

Skip to content

Commit 2280f3f

Browse files
committed
Updating old links
1 parent d6cf038 commit 2280f3f

3 files changed

Lines changed: 6 additions & 6 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.8.16"
22+
VERSION = "1.2.8.17"
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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 += "'https://github.com/coresecurity/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 'https://github.com/mullender/python-ntlm'"
8080
logger.warn(warnMsg)
8181
missing_libraries.add('python-ntlm')
8282

@@ -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 += "'https://pypi.org/project/pyreadline/'"
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
@@ -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-
b5b936aa2f5ea4aa28d66e924ef1dba9 lib/core/settings.py
51+
780178e74a59e86cfd73135528686abd lib/core/settings.py
5252
dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5353
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5454
5b7ff6f49ff3af62f8c12f74b6d49dd2 lib/core/target.py
@@ -103,7 +103,7 @@ db208ab47de010836c6bf044e2357861 lib/techniques/blind/inference.py
103103
77ff35587af9e3dfde63b8327e230f9a lib/utils/api.py
104104
37dfb641358669f62c2acedff241348b lib/utils/brute.py
105105
31b1e7eb489eac837db6a2bc1dcb7da7 lib/utils/crawler.py
106-
de9620f03231d8329ee8434884b6bacd lib/utils/deps.py
106+
f9867bbfcd6d31916ca73e72e95fd881 lib/utils/deps.py
107107
f7af65aa47329d021e2b2cc8521b42a4 lib/utils/getch.py
108108
7af29f61302c8693cd6436d4b69e22d3 lib/utils/har.py
109109
062e4e8fc43ac54305a75ddd0d482f81 lib/utils/hashdb.py

0 commit comments

Comments
 (0)