Skip to content

Commit 6942abf

Browse files
committed
Minor update
1 parent 3c25f79 commit 6942abf

File tree

11 files changed

+15
-17
lines changed

11 files changed

+15
-17
lines changed

lib/core/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from thirdparty.six import unichr as _unichr
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.5.5.10"
22+
VERSION = "1.5.5.11"
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/request/dns.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ class DNSServer(object):
6868
raw request
6969
7070
Reference(s):
71-
http://code.activestate.com/recipes/491264-mini-fake-dns-server/
72-
https://code.google.com/p/marlon-tools/source/browse/tools/dnsproxy/dnsproxy.py
71+
https://code.activestate.com/recipes/491264-mini-fake-dns-server/
72+
https://web.archive.org/web/20150418152405/https://code.google.com/p/marlon-tools/source/browse/tools/dnsproxy/dnsproxy.py
7373
"""
7474

7575
def __init__(self):

plugins/dbms/access/connector.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@
2222

2323
class Connector(GenericConnector):
2424
"""
25-
Homepage: http://pyodbc.googlecode.com/
26-
User guide: http://code.google.com/p/pyodbc/wiki/GettingStarted
27-
API: http://code.google.com/p/pyodbc/w/list
25+
Homepage: https://github.com/mkleehammer/pyodbc
26+
User guide: https://github.com/mkleehammer/pyodbc/wiki
2827
Debian package: python-pyodbc
2928
License: MIT
3029
"""

plugins/dbms/cratedb/syntax.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Syntax(GenericSyntax):
1111
@staticmethod
1212
def escape(expression, quote=True):
1313
"""
14-
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == u"SELECT 'abcdefgh' FROM foobar"
14+
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
1515
True
1616
"""
1717

plugins/dbms/derby/syntax.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Syntax(GenericSyntax):
1111
@staticmethod
1212
def escape(expression, quote=True):
1313
"""
14-
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == u"SELECT 'abcdefgh' FROM foobar"
14+
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
1515
True
1616
"""
1717

plugins/dbms/extremedb/syntax.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Syntax(GenericSyntax):
1111
@staticmethod
1212
def escape(expression, quote=True):
1313
"""
14-
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == u"SELECT 'abcdefgh' FROM foobar"
14+
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
1515
True
1616
"""
1717

plugins/dbms/frontbase/syntax.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Syntax(GenericSyntax):
1111
@staticmethod
1212
def escape(expression, quote=True):
1313
"""
14-
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == u"SELECT 'abcdefgh' FROM foobar"
14+
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
1515
True
1616
"""
1717

plugins/dbms/maxdb/syntax.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Syntax(GenericSyntax):
1111
@staticmethod
1212
def escape(expression, quote=True):
1313
"""
14-
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == u"SELECT 'abcdefgh' FROM foobar"
14+
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
1515
True
1616
"""
1717

plugins/dbms/mckoi/syntax.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Syntax(GenericSyntax):
1111
@staticmethod
1212
def escape(expression, quote=True):
1313
"""
14-
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == u"SELECT 'abcdefgh' FROM foobar"
14+
>>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
1515
True
1616
"""
1717

plugins/dbms/mysql/connector.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@
2121

2222
class Connector(GenericConnector):
2323
"""
24-
Homepage: http://code.google.com/p/pymysql/
25-
User guide: http://code.google.com/p/pymysql/
26-
API: http://code.google.com/p/pymysql/
27-
Debian package: <none>
24+
Homepage: https://github.com/PyMySQL/PyMySQL
25+
User guide: https://pymysql.readthedocs.io/en/latest/
26+
Debian package: python3-pymysql
2827
License: MIT
2928
3029
Possible connectors: http://wiki.python.org/moin/MySQL

plugins/generic/takeover.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def osPwn(self):
145145
except ImportError:
146146
errMsg = "sqlmap requires 'python-impacket' third-party library "
147147
errMsg += "in order to run icmpsh master. You can get it at "
148-
errMsg += "http://code.google.com/p/impacket/downloads/list"
148+
errMsg += "https://github.com/SecureAuthCorp/impacket"
149149
raise SqlmapMissingDependence(errMsg)
150150

151151
filename = "/proc/sys/net/ipv4/icmp_echo_ignore_all"

0 commit comments

Comments
 (0)