File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919from 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 "
2323TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2424TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2525VERSION_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):
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 ):
Original file line number Diff line number Diff line change 2222
2323class 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 """
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 2121
2222class 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
You can’t perform that action at this time.
0 commit comments