Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6b91b7b

Browse files
committed
Minor cosmetics
1 parent 2e62fda commit 6b91b7b

3 files changed

Lines changed: 6 additions & 9 deletions

File tree

lib/controller/action.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,26 +74,23 @@ def action():
7474

7575
if conf.getPasswordHashes:
7676
try:
77-
conf.dumper.userSettings("database management system users password hashes",
78-
conf.dbmsHandler.getPasswordHashes(), "password hash", CONTENT_TYPE.PASSWORDS)
77+
conf.dumper.userSettings("database management system users password hashes", conf.dbmsHandler.getPasswordHashes(), "password hash", CONTENT_TYPE.PASSWORDS)
7978
except SqlmapNoneDataException, ex:
8079
logger.critical(ex)
8180
except:
8281
raise
8382

8483
if conf.getPrivileges:
8584
try:
86-
conf.dumper.userSettings("database management system users privileges",
87-
conf.dbmsHandler.getPrivileges(), "privilege", CONTENT_TYPE.PRIVILEGES)
85+
conf.dumper.userSettings("database management system users privileges", conf.dbmsHandler.getPrivileges(), "privilege", CONTENT_TYPE.PRIVILEGES)
8886
except SqlmapNoneDataException, ex:
8987
logger.critical(ex)
9088
except:
9189
raise
9290

9391
if conf.getRoles:
9492
try:
95-
conf.dumper.userSettings("database management system users roles",
96-
conf.dbmsHandler.getRoles(), "role", CONTENT_TYPE.ROLES)
93+
conf.dumper.userSettings("database management system users roles", conf.dbmsHandler.getRoles(), "role", CONTENT_TYPE.ROLES)
9794
except SqlmapNoneDataException, ex:
9895
logger.critical(ex)
9996
except:

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.9.3"
22+
VERSION = "1.0.9.4"
2323
REVISION = getRevisionNumber()
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ b46521e29ea3d813bab5aeb16cac6498 extra/shutils/duplicates.py
1919
05615626222060120450518136b14ba9 extra/shutils/regressiontest.py
2020
cc9c82cfffd8ee9b25ba3af6284f057e extra/sqlharvest/__init__.py
2121
4f2f817596540d82f9fcc0c5b2228beb extra/sqlharvest/sqlharvest.py
22-
b704c0f943c015f6247cfae20048ae8e lib/controller/action.py
22+
2daa39e4d59526acb4772b6c47eb315f lib/controller/action.py
2323
d1451b43f3ac80bfbea8657e288865f8 lib/controller/checks.py
2424
7c5ba631796f12d6de9b667e4cc7812b lib/controller/controller.py
2525
5ae8f657fd4e8026fcc9624f5b5533fe lib/controller/handler.py
@@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
4545
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
4646
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
4747
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48-
2939d36e508d1af1d68c036c62e67edf lib/core/settings.py
48+
c8d3437361cee294f4946eb65211623a lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
0bc2fae1dec18cdd11954b22358293f2 lib/core/target.py

0 commit comments

Comments
 (0)