File tree 11 files changed +15
-17
lines changed
11 files changed +15
-17
lines changed Original file line number Diff line number Diff line change 19
19
from thirdparty .six import unichr as _unichr
20
20
21
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
- VERSION = "1.5.5.10 "
22
+ VERSION = "1.5.5.11 "
23
23
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
24
24
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
25
25
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change @@ -68,8 +68,8 @@ class DNSServer(object):
68
68
raw request
69
69
70
70
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
73
73
"""
74
74
75
75
def __init__ (self ):
Original file line number Diff line number Diff line change 22
22
23
23
class Connector (GenericConnector ):
24
24
"""
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
28
27
Debian package: python-pyodbc
29
28
License: MIT
30
29
"""
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class Syntax(GenericSyntax):
11
11
@staticmethod
12
12
def escape (expression , quote = True ):
13
13
"""
14
- >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == u "SELECT 'abcdefgh' FROM foobar"
14
+ >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
15
15
True
16
16
"""
17
17
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class Syntax(GenericSyntax):
11
11
@staticmethod
12
12
def escape (expression , quote = True ):
13
13
"""
14
- >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == u "SELECT 'abcdefgh' FROM foobar"
14
+ >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
15
15
True
16
16
"""
17
17
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class Syntax(GenericSyntax):
11
11
@staticmethod
12
12
def escape (expression , quote = True ):
13
13
"""
14
- >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == u "SELECT 'abcdefgh' FROM foobar"
14
+ >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
15
15
True
16
16
"""
17
17
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class Syntax(GenericSyntax):
11
11
@staticmethod
12
12
def escape (expression , quote = True ):
13
13
"""
14
- >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == u "SELECT 'abcdefgh' FROM foobar"
14
+ >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
15
15
True
16
16
"""
17
17
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class Syntax(GenericSyntax):
11
11
@staticmethod
12
12
def escape (expression , quote = True ):
13
13
"""
14
- >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == u "SELECT 'abcdefgh' FROM foobar"
14
+ >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
15
15
True
16
16
"""
17
17
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class Syntax(GenericSyntax):
11
11
@staticmethod
12
12
def escape (expression , quote = True ):
13
13
"""
14
- >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == u "SELECT 'abcdefgh' FROM foobar"
14
+ >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar") == "SELECT 'abcdefgh' FROM foobar"
15
15
True
16
16
"""
17
17
Original file line number Diff line number Diff line change 21
21
22
22
class Connector (GenericConnector ):
23
23
"""
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
28
27
License: MIT
29
28
30
29
Possible connectors: http://wiki.python.org/moin/MySQL
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ def osPwn(self):
145
145
except ImportError :
146
146
errMsg = "sqlmap requires 'python-impacket' third-party library "
147
147
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"
149
149
raise SqlmapMissingDependence (errMsg )
150
150
151
151
filename = "/proc/sys/net/ipv4/icmp_echo_ignore_all"
You can’t perform that action at this time.
0 commit comments