mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 02:53:46 +03:00
Fixes #2031
This commit is contained in:
parent
3e22cbfed7
commit
1ca633ae64
|
@ -19,7 +19,7 @@ from lib.core.enums import OS
|
||||||
from lib.core.revision import getRevisionNumber
|
from lib.core.revision import getRevisionNumber
|
||||||
|
|
||||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||||
VERSION = "1.0.7.34"
|
VERSION = "1.0.7.35"
|
||||||
REVISION = getRevisionNumber()
|
REVISION = getRevisionNumber()
|
||||||
STABLE = VERSION.count('.') <= 2
|
STABLE = VERSION.count('.') <= 2
|
||||||
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
|
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
|
||||||
|
|
2
thirdparty/clientform/clientform.py
vendored
2
thirdparty/clientform/clientform.py
vendored
|
@ -1142,7 +1142,7 @@ def _ParseFileEx(file, base_uri,
|
||||||
try:
|
try:
|
||||||
form.fixup()
|
form.fixup()
|
||||||
except AttributeError, ex:
|
except AttributeError, ex:
|
||||||
if "item is disabled" not in str(ex):
|
if not any(_ in str(ex) for _ in ("item is disabled", "is readonly")):
|
||||||
raise
|
raise
|
||||||
return forms
|
return forms
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
|
||||||
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
|
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
|
||||||
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
|
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
|
||||||
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
|
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
|
||||||
bdefa7f4547ac62a447b84326f00b256 lib/core/settings.py
|
02b122c6229e1c4b6ab42575b5200783 lib/core/settings.py
|
||||||
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
|
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
|
||||||
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
|
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
|
||||||
0bc2fae1dec18cdd11954b22358293f2 lib/core/target.py
|
0bc2fae1dec18cdd11954b22358293f2 lib/core/target.py
|
||||||
|
@ -311,7 +311,7 @@ ee25f2a03587e2c283eab0b36c9e5783 thirdparty/chardet/sbcsgroupprober.py
|
||||||
c9349824f2647962175d321cc0c52134 thirdparty/chardet/sjisprober.py
|
c9349824f2647962175d321cc0c52134 thirdparty/chardet/sjisprober.py
|
||||||
bcae4c645a737d3f0e7c96a66528ca4a thirdparty/chardet/universaldetector.py
|
bcae4c645a737d3f0e7c96a66528ca4a thirdparty/chardet/universaldetector.py
|
||||||
6f8b3e25472c02fb45a75215a175991f thirdparty/chardet/utf8prober.py
|
6f8b3e25472c02fb45a75215a175991f thirdparty/chardet/utf8prober.py
|
||||||
101b6d7f62c9cd77504f9368edf34e48 thirdparty/clientform/clientform.py
|
b678dcd25ecb1533ffe2493b6e711bb1 thirdparty/clientform/clientform.py
|
||||||
722281d87fb13ec22555480f8f4c715b thirdparty/clientform/__init__.py
|
722281d87fb13ec22555480f8f4c715b thirdparty/clientform/__init__.py
|
||||||
0b625ccefa6b066f79d3cbb3639267e6 thirdparty/colorama/ansi.py
|
0b625ccefa6b066f79d3cbb3639267e6 thirdparty/colorama/ansi.py
|
||||||
e52252bb81ce1a14b7245b53af33e75f thirdparty/colorama/ansitowin32.py
|
e52252bb81ce1a14b7245b53af33e75f thirdparty/colorama/ansitowin32.py
|
||||||
|
|
Loading…
Reference in New Issue
Block a user