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

Skip to content

Commit 86303bd

Browse files
committed
Trivial update (wording)
1 parent c89f119 commit 86303bd

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.6"
22+
VERSION = "1.2.6.7"
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
@@ -253,13 +253,13 @@ def cmdLineParser(argv=None):
253253
help="Regexp to exclude parameters from testing (e.g. \"ses\")")
254254

255255
injection.add_option("--dbms", dest="dbms",
256-
help="Force back-end DBMS to this value")
256+
help="Force back-end DBMS to provided value")
257257

258258
injection.add_option("--dbms-cred", dest="dbmsCred",
259259
help="DBMS authentication credentials (user:password)")
260260

261261
injection.add_option("--os", dest="os",
262-
help="Force back-end DBMS operating system to this value")
262+
help="Force back-end DBMS operating system to provided value")
263263

264264
injection.add_option("--invalid-bignum", dest="invalidBignum", action="store_true",
265265
help="Use big numbers for invalidating values")

sqlmap.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ skipStatic = False
241241
# Regexp to exclude parameters from testing (e.g. "ses").
242242
paramExclude =
243243

244-
# Force back-end DBMS to this value. If this option is set, the back-end
244+
# Force back-end DBMS to provided value. If this option is set, the back-end
245245
# DBMS identification process will be minimized as needed.
246246
# If not set, sqlmap will detect back-end DBMS automatically by default.
247247
# Valid: mssql, mysql, mysql 4, mysql 5, oracle, pgsql, sqlite, sqlite3,
@@ -256,7 +256,7 @@ dbms =
256256
# Syntax: username:password
257257
dbmsCred =
258258

259-
# Force back-end DBMS operating system to this value. If this option is
259+
# Force back-end DBMS operating system to provided value. If this option is
260260
# set, the back-end DBMS identification process will be minimized as
261261
# needed.
262262
# If not set, sqlmap will detect back-end DBMS operating system

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-
def1ed8934e08b37d5e6455554cb2be8 lib/core/settings.py
50+
83c0f3f92dc98c530494d0bf32617d0e 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-
5e46fac7f824ba8ab8003a1cd47d8af3 lib/parse/cmdline.py
61+
ec0dae17de8c524f86bf66ffcac24093 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)