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

Skip to content

Commit e0c7b5c

Browse files
committed
Minor wording update
1 parent 091c8ab commit e0c7b5c

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

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.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.2.6.8"
22+
VERSION = "1.2.6.9"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ def cmdLineParser(argv=None):
400400
help="Search column(s), table(s) and/or database name(s)")
401401

402402
enumeration.add_option("--comments", dest="getComments", action="store_true",
403-
help="Retrieve DBMS comments")
403+
help="Check for DBMS comments during enumeration")
404404

405405
enumeration.add_option("-D", dest="db",
406406
help="DBMS database to enumerate")
@@ -581,7 +581,7 @@ def cmdLineParser(argv=None):
581581
help="Log all HTTP traffic into a HAR file")
582582

583583
general.add_option("--hex", dest="hexConvert", action="store_true",
584-
help="Use DBMS hex function(s) for data retrieval")
584+
help="Use hex conversion during data retrieval")
585585

586586
general.add_option("--output-dir", dest="outputDir", action="store",
587587
help="Custom output directory path")

sqlmap.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ dumpAll = False
481481
# Valid: True or False
482482
search = False
483483

484-
# Retrieve back-end database management system comments.
484+
# Check for database management system database comments during enumeration.
485485
# Valid: True or False
486486
getComments = False
487487

@@ -710,7 +710,7 @@ forms = False
710710
# Valid: True or False
711711
freshQueries = False
712712

713-
# Use DBMS hex function(s) for data retrieval.
713+
# Use hex conversion during data retrieval.
714714
# Valid: True or False
715715
hexConvert = False
716716

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ c9a56e58984420a5abb7a3f7aadc196d lib/core/optiondict.py
4747
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4848
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
4949
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
50-
9cfb2ab4e4be638f47abb7e8b0bb47e9 lib/core/settings.py
50+
55f2994073c8311c14895278ee8c8e25 lib/core/settings.py
5151
0dfc2ed40adf72e302291f6ecd4406f6 lib/core/shell.py
5252
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5353
6306284edcccc185b2df085438572b0d lib/core/target.py
@@ -58,7 +58,7 @@ c54afa9950529a5974166464bfd4c34a lib/core/update.py
5858
e772deb63270375e685fa5a7b775c382 lib/core/wordlist.py
5959
1e5532ede194ac9c083891c2f02bca93 lib/__init__.py
6060
7620f1f4b8791e13c7184c06b5421754 lib/parse/banner.py
61-
ec0dae17de8c524f86bf66ffcac24093 lib/parse/cmdline.py
61+
dc7b8fef4125abb26869689b8921b195 lib/parse/cmdline.py
6262
fb2e2f05dde98caeac6ccf3e67192177 lib/parse/configfile.py
6363
3794ff139869f5ae8e81cfdbe5714f56 lib/parse/handler.py
6464
6bab53ea9d75bc9bb8169d3e8f3f149f lib/parse/headers.py

0 commit comments

Comments
 (0)