Skip to content

Commit b1662f5

Browse files
committed
Revisiting some of links
1 parent 8cef17b commit b1662f5

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

lib/core/dicts.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,10 @@
184184

185185
DBMS_DICT = {
186186
DBMS.MSSQL: (MSSQL_ALIASES, "python-pymssql", "https://github.com/pymssql/pymssql", "mssql+pymssql"),
187-
DBMS.MYSQL: (MYSQL_ALIASES, "python-pymysql", "https://github.com/petehunt/PyMySQL/", "mysql"),
187+
DBMS.MYSQL: (MYSQL_ALIASES, "python-pymysql", "https://github.com/PyMySQL/PyMySQL", "mysql"),
188188
DBMS.PGSQL: (PGSQL_ALIASES, "python-psycopg2", "http://initd.org/psycopg/", "postgresql"),
189-
DBMS.ORACLE: (ORACLE_ALIASES, "python cx_Oracle", "http://cx-oracle.sourceforge.net/", "oracle"),
190-
DBMS.SQLITE: (SQLITE_ALIASES, "python-sqlite", "http://packages.ubuntu.com/quantal/python-sqlite", "sqlite"),
189+
DBMS.ORACLE: (ORACLE_ALIASES, "python cx_Oracle", "https://oracle.github.io/python-cx_Oracle/", "oracle"),
190+
DBMS.SQLITE: (SQLITE_ALIASES, "python-sqlite", "https://docs.python.org/2/library/sqlite3.html", "sqlite"),
191191
DBMS.ACCESS: (ACCESS_ALIASES, "python-pyodbc", "https://github.com/mkleehammer/pyodbc", "access"),
192192
DBMS.FIREBIRD: (FIREBIRD_ALIASES, "python-kinterbasdb", "http://kinterbasdb.sourceforge.net/", "firebird"),
193193
DBMS.MAXDB: (MAXDB_ALIASES, None, None, "maxdb"),

lib/core/option.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ def _setMetasploit():
692692
errMsg = "sqlmap requires third-party module 'pywin32' "
693693
errMsg += "in order to use Metasploit functionalities on "
694694
errMsg += "Windows. You can download it from "
695-
errMsg += "'http://sourceforge.net/projects/pywin32/files/pywin32/'"
695+
errMsg += "'https://sourceforge.net/projects/pywin32/files/pywin32/'"
696696
raise SqlmapMissingDependence(errMsg)
697697

698698
if not conf.msfPath:
@@ -784,7 +784,7 @@ def _(key, value):
784784

785785
if not msfEnvPathExists:
786786
errMsg = "unable to locate Metasploit Framework installation. "
787-
errMsg += "You can get it at 'http://www.metasploit.com/download/'"
787+
errMsg += "You can get it at 'https://www.metasploit.com/download/'"
788788
raise SqlmapFilePathException(errMsg)
789789

790790
def _setWriteFile():
@@ -1376,7 +1376,7 @@ def _setHTTPAuthentication():
13761376
except ImportError:
13771377
errMsg = "sqlmap requires Python NTLM third-party library "
13781378
errMsg += "in order to authenticate via NTLM, "
1379-
errMsg += "http://code.google.com/p/python-ntlm/"
1379+
errMsg += "https://github.com/mullender/python-ntlm"
13801380
raise SqlmapMissingDependence(errMsg)
13811381

13821382
authHandler = HTTPNtlmAuthHandler.HTTPNtlmAuthHandler(kb.passwordMgr)

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.1.12.14"
22+
VERSION = "1.1.12.15"
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/versioncheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
PYVERSION = sys.version.split()[0]
1111

1212
if PYVERSION >= "3" or PYVERSION < "2.6":
13-
exit("[CRITICAL] incompatible Python version detected ('%s'). For successfully running sqlmap you'll have to use version 2.6.x or 2.7.x (visit 'http://www.python.org/download/')" % PYVERSION)
13+
exit("[CRITICAL] incompatible Python version detected ('%s'). For successfully running sqlmap you'll have to use version 2.6.x or 2.7.x (visit 'https://www.python.org/downloads/')" % PYVERSION)
1414

1515
extensions = ("gzip", "ssl", "sqlite3", "zlib")
1616
try:

txt/checksum.md5

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,20 @@ d359917cd034d4d353cfd699bd201693 lib/core/common.py
3333
1c14bdbf47b8dba31f73da9ad731a54a lib/core/datatype.py
3434
2c16cdbbccbfcfc0ddac2cff876ce9f3 lib/core/decorators.py
3535
d3ed5f9baa074df33390d33164d9d8b5 lib/core/defaults.py
36-
96fe4769b6e3e68635fa82cd59cc49fc lib/core/dicts.py
36+
1c428d1b036ff81b459121a0e57925c9 lib/core/dicts.py
3737
956be8ca65c7f04f08c6f2dce710b3b2 lib/core/dump.py
3838
8a29770c1d525edc27b6f82317183103 lib/core/enums.py
3939
9d2dede53d2f427f940c1b8f00b6e7a2 lib/core/exception.py
4040
5fb9aaf874daa47ea2b672a22740e56b lib/core/__init__.py
4141
f872699e948d0692ce11b54781da814c lib/core/log.py
4242
5adb07b2771f26822e94c75c2cb9db0b lib/core/optiondict.py
43-
3775628ac4ee0e4e2d0247cd93de05aa lib/core/option.py
43+
35187108c74a957ebadf194207737162 lib/core/option.py
4444
8764d2d8610fff5f4aef897b2b1f1006 lib/core/profiling.py
4545
2de91262fcc6bd51c987fd2f8a59ff31 lib/core/readlineng.py
4646
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
4848
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49-
750dca60518fcc1f37df050b0d97c59a lib/core/settings.py
49+
6c29683312b1a40cdf81fa378efc9fc2 lib/core/settings.py
5050
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252
d93501771b41315f9fb949305b6ed257 lib/core/target.py
@@ -114,7 +114,7 @@ f20ae1aa6a8d1d5373ace1f7ed3476a7 lib/utils/htmlentities.py
114114
760290393e35e5f53f15ba46e09d59dd lib/utils/search.py
115115
b6898e77038842c853932a6662c011be lib/utils/sqlalchemy.py
116116
36b95bc7fa2cf4f005a86e516a8cba68 lib/utils/timeout.py
117-
a3b51d28b0824d4d2333a3dd792497ac lib/utils/versioncheck.py
117+
2243720bd8057ead08bfae367eb24038 lib/utils/versioncheck.py
118118
fe32db8f58f95da62f7f819cabadfdd1 lib/utils/xrange.py
119119
96d3299ecc915124a7e7648eaeecf6c7 plugins/dbms/access/connector.py
120120
1f648025091189b8b62ebf737d7044a9 plugins/dbms/access/enumeration.py

0 commit comments

Comments
 (0)