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 .enums import OS
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.0.12.6 "
22+ VERSION = "1.0.12.7 "
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 1010class Enumeration (GenericEnumeration ):
1111 def __init__ (self ):
1212 GenericEnumeration .__init__ (self )
13+
14+ def searchDb (self ):
15+ warnMsg = "on Informix searching of databases is not implemented"
16+ logger .warn (warnMsg )
17+
18+ return []
19+
20+ def searchTable (self ):
21+ warnMsg = "on Informix searching of tables is not implemented"
22+ logger .warn (warnMsg )
23+
24+ return []
25+
26+ def searchColumn (self ):
27+ warnMsg = "on Informix searching of columns is not implemented"
28+ logger .warn (warnMsg )
29+
30+ return []
31+
32+ def search (self ):
33+ warnMsg = "on Informix search option is not available"
34+ logger .warn (warnMsg )
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
4545b3a62d41a5af6cd7fa733b6227febb0c lib/core/replication.py
464699a2b496b9d5b546b335653ca801153f lib/core/revision.py
47477c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48- 90bdaaf9acba7304eec9fadc70671db1 lib/core/settings.py
48+ 93f88f50fc17b9df82d97b35f0b110b5 lib/core/settings.py
49497af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
505023657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151c3ace7874a536d801f308cf1fd03df99 lib/core/target.py
@@ -144,7 +144,7 @@ d278ad5f1c13fea871ed1120942244d5 plugins/dbms/hsqldb/__init__.py
144144d781720e15c23b662bae3098ed470756 plugins/dbms/hsqldb/syntax.py
1451452f957281cfe80396f73a3dccc0cb6d45 plugins/dbms/hsqldb/takeover.py
14614678917f19ea0750a665094d7dd7778d0c plugins/dbms/informix/connector.py
147- d251aecff7544f79f78385386bb7fa35 plugins/dbms/informix/enumeration.py
147+ cbada3ff47bc259a4876317fd5b20024 plugins/dbms/informix/enumeration.py
148148e8f0f28da98020dce27970a50e10a23b plugins/dbms/informix/filesystem.py
14914989540595a6011b47629c68d11a5e4533 plugins/dbms/informix/fingerprint.py
15015099a77ad7aa7ca4a4b5981f2fa0d9c616 plugins/dbms/informix/__init__.py
You can’t perform that action at this time.
0 commit comments