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

Skip to content

Commit 99565f2

Browse files
committed
Minor update
1 parent e808496 commit 99565f2

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

lib/core/gui.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,13 @@ def dummy():
8686
tk.Label(frame).grid(column=0, row=0, sticky=tk.W)
8787

8888
row = 1
89+
if group.get_description():
90+
tk.Label(frame, text="%s:" % group.get_description()).grid(column=0, row=1, columnspan=3, sticky=tk.W)
91+
tk.Label(frame).grid(column=0, row=2, sticky=tk.W)
92+
row += 2
93+
8994
for option in group.option_list:
90-
tk.Label(frame, text=parser.formatter._format_option_strings(option)).grid(column=0, row=row, sticky=tk.W)
95+
tk.Label(frame, text="%s " % parser.formatter._format_option_strings(option)).grid(column=0, row=row, sticky=tk.W)
9196

9297
if option.type == "string":
9398
widget = tk.Entry(frame)
@@ -107,8 +112,7 @@ def dummy():
107112
if hasattr(widget, "insert"):
108113
widget.insert(0, default)
109114

110-
tk.Label(frame, text=" ").grid(column=3, row=row, sticky=tk.W)
111-
tk.Label(frame, text=option.help).grid(column=4, row=row, sticky=tk.W)
115+
tk.Label(frame, text=" %s" % option.help).grid(column=2, row=row, sticky=tk.W)
112116

113117
row += 1
114118

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.3.11.85"
21+
VERSION = "1.3.11.86"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/parse/cmdline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ def cmdLineParser(argv=None):
411411
help="Perform an extensive DBMS version fingerprint")
412412

413413
# Enumeration options
414-
enumeration = parser.add_argument_group("Enumeration", "These options can be used to enumerate the back-end database management system information, structure and data contained in the tables. Moreover you can run your own SQL statements")
414+
enumeration = parser.add_argument_group("Enumeration", "These options can be used to enumerate the back-end database management system information, structure and data contained in the tables")
415415

416416
enumeration.add_argument("-a", "--all", dest="getAll", action="store_true",
417417
help="Retrieve everything")

0 commit comments

Comments
 (0)