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 lib .core .revision import getRevisionNumber
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.0.6.5 "
22+ VERSION = "1.0.6.6 "
2323REVISION = getRevisionNumber ()
2424STABLE = VERSION .count ('.' ) <= 2
2525VERSION_STRING = "sqlmap/%s#%s" % (VERSION , "stable" if STABLE else "dev" )
Original file line number Diff line number Diff line change @@ -106,10 +106,6 @@ def checkDbms(self):
106106 if not conf .extensiveFp and (Backend .isDbmsWithin (FIREBIRD_ALIASES ) \
107107 or (conf .dbms or "" ).lower () in FIREBIRD_ALIASES ) and Backend .getVersion () and \
108108 Backend .getVersion () != UNKNOWN_DBMS_VERSION :
109- v = Backend .getVersion ().replace (">" , "" )
110- v = v .replace ("=" , "" )
111- v = v .replace (" " , "" )
112-
113109 Backend .setVersion (v )
114110
115111 setDbms ("%s %s" % (DBMS .FIREBIRD , Backend .getVersion ()))
Original file line number Diff line number Diff line change @@ -83,12 +83,6 @@ def checkDbms(self):
8383 if not conf .extensiveFp and (Backend .isDbmsWithin (HSQLDB_ALIASES ) \
8484 or (conf .dbms or "" ).lower () in HSQLDB_ALIASES ) and Backend .getVersion () and \
8585 Backend .getVersion () != UNKNOWN_DBMS_VERSION :
86- v = Backend .getVersion ().replace (">" , "" )
87- v = v .replace ("=" , "" )
88- v = v .replace (" " , "" )
89-
90- Backend .setVersion (v )
91-
9286 setDbms ("%s %s" % (DBMS .HSQLDB , Backend .getVersion ()))
9387
9488 if Backend .isVersionGreaterOrEqualThan ("1.7.2" ):
Original file line number Diff line number Diff line change @@ -152,12 +152,6 @@ def checkDbms(self):
152152 if not conf .extensiveFp and (Backend .isDbmsWithin (MYSQL_ALIASES ) \
153153 or (conf .dbms or "" ).lower () in MYSQL_ALIASES ) and Backend .getVersion () and \
154154 Backend .getVersion () != UNKNOWN_DBMS_VERSION :
155- v = Backend .getVersion ().replace (">" , "" )
156- v = v .replace ("=" , "" )
157- v = v .replace (" " , "" )
158-
159- Backend .setVersion (v )
160-
161155 setDbms ("%s %s" % (DBMS .MYSQL , Backend .getVersion ()))
162156
163157 if Backend .isVersionGreaterOrEqualThan ("5" ):
You can’t perform that action at this time.
0 commit comments