Revisiting some of links

This commit is contained in:
Miroslav Stampar 2017-12-12 13:39:58 +01:00
parent 8cef17b583
commit b1662f54c8
5 changed files with 12 additions and 12 deletions

View File

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

View File

@ -692,7 +692,7 @@ def _setMetasploit():
errMsg = "sqlmap requires third-party module 'pywin32' "
errMsg += "in order to use Metasploit functionalities on "
errMsg += "Windows. You can download it from "
errMsg += "'http://sourceforge.net/projects/pywin32/files/pywin32/'"
errMsg += "'https://sourceforge.net/projects/pywin32/files/pywin32/'"
raise SqlmapMissingDependence(errMsg)
if not conf.msfPath:
@ -784,7 +784,7 @@ def _setMetasploit():
if not msfEnvPathExists:
errMsg = "unable to locate Metasploit Framework installation. "
errMsg += "You can get it at 'http://www.metasploit.com/download/'"
errMsg += "You can get it at 'https://www.metasploit.com/download/'"
raise SqlmapFilePathException(errMsg)
def _setWriteFile():
@ -1376,7 +1376,7 @@ def _setHTTPAuthentication():
except ImportError:
errMsg = "sqlmap requires Python NTLM third-party library "
errMsg += "in order to authenticate via NTLM, "
errMsg += "http://code.google.com/p/python-ntlm/"
errMsg += "https://github.com/mullender/python-ntlm"
raise SqlmapMissingDependence(errMsg)
authHandler = HTTPNtlmAuthHandler.HTTPNtlmAuthHandler(kb.passwordMgr)

View File

@ -19,7 +19,7 @@ from lib.core.enums import DBMS_DIRECTORY_NAME
from lib.core.enums import OS
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.1.12.14"
VERSION = "1.1.12.15"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

View File

@ -10,7 +10,7 @@ import sys
PYVERSION = sys.version.split()[0]
if PYVERSION >= "3" or PYVERSION < "2.6":
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)
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)
extensions = ("gzip", "ssl", "sqlite3", "zlib")
try:

View File

@ -33,20 +33,20 @@ d359917cd034d4d353cfd699bd201693 lib/core/common.py
1c14bdbf47b8dba31f73da9ad731a54a lib/core/datatype.py
2c16cdbbccbfcfc0ddac2cff876ce9f3 lib/core/decorators.py
d3ed5f9baa074df33390d33164d9d8b5 lib/core/defaults.py
96fe4769b6e3e68635fa82cd59cc49fc lib/core/dicts.py
1c428d1b036ff81b459121a0e57925c9 lib/core/dicts.py
956be8ca65c7f04f08c6f2dce710b3b2 lib/core/dump.py
8a29770c1d525edc27b6f82317183103 lib/core/enums.py
9d2dede53d2f427f940c1b8f00b6e7a2 lib/core/exception.py
5fb9aaf874daa47ea2b672a22740e56b lib/core/__init__.py
f872699e948d0692ce11b54781da814c lib/core/log.py
5adb07b2771f26822e94c75c2cb9db0b lib/core/optiondict.py
3775628ac4ee0e4e2d0247cd93de05aa lib/core/option.py
35187108c74a957ebadf194207737162 lib/core/option.py
8764d2d8610fff5f4aef897b2b1f1006 lib/core/profiling.py
2de91262fcc6bd51c987fd2f8a59ff31 lib/core/readlineng.py
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
750dca60518fcc1f37df050b0d97c59a lib/core/settings.py
6c29683312b1a40cdf81fa378efc9fc2 lib/core/settings.py
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
d93501771b41315f9fb949305b6ed257 lib/core/target.py
@ -114,7 +114,7 @@ f20ae1aa6a8d1d5373ace1f7ed3476a7 lib/utils/htmlentities.py
760290393e35e5f53f15ba46e09d59dd lib/utils/search.py
b6898e77038842c853932a6662c011be lib/utils/sqlalchemy.py
36b95bc7fa2cf4f005a86e516a8cba68 lib/utils/timeout.py
a3b51d28b0824d4d2333a3dd792497ac lib/utils/versioncheck.py
2243720bd8057ead08bfae367eb24038 lib/utils/versioncheck.py
fe32db8f58f95da62f7f819cabadfdd1 lib/utils/xrange.py
96d3299ecc915124a7e7648eaeecf6c7 plugins/dbms/access/connector.py
1f648025091189b8b62ebf737d7044a9 plugins/dbms/access/enumeration.py