File tree Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 19
19
from lib .core .enums import OS
20
20
21
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
- VERSION = "1.0.12.6 "
22
+ VERSION = "1.0.12.7 "
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 10
10
class Enumeration (GenericEnumeration ):
11
11
def __init__ (self ):
12
12
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
45
45
b3a62d41a5af6cd7fa733b6227febb0c lib/core/replication.py
46
46
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
47
47
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48
- 90bdaaf9acba7304eec9fadc70671db1 lib/core/settings.py
48
+ 93f88f50fc17b9df82d97b35f0b110b5 lib/core/settings.py
49
49
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
50
50
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
51
51
c3ace7874a536d801f308cf1fd03df99 lib/core/target.py
@@ -144,7 +144,7 @@ d278ad5f1c13fea871ed1120942244d5 plugins/dbms/hsqldb/__init__.py
144
144
d781720e15c23b662bae3098ed470756 plugins/dbms/hsqldb/syntax.py
145
145
2f957281cfe80396f73a3dccc0cb6d45 plugins/dbms/hsqldb/takeover.py
146
146
78917f19ea0750a665094d7dd7778d0c plugins/dbms/informix/connector.py
147
- d251aecff7544f79f78385386bb7fa35 plugins/dbms/informix/enumeration.py
147
+ cbada3ff47bc259a4876317fd5b20024 plugins/dbms/informix/enumeration.py
148
148
e8f0f28da98020dce27970a50e10a23b plugins/dbms/informix/filesystem.py
149
149
89540595a6011b47629c68d11a5e4533 plugins/dbms/informix/fingerprint.py
150
150
99a77ad7aa7ca4a4b5981f2fa0d9c616 plugins/dbms/informix/__init__.py
You can’t perform that action at this time.
0 commit comments