X Tutup
Skip to content

Commit aaa0c5c

Browse files
committed
Minor update
1 parent 57bb710 commit aaa0c5c

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

lib/core/optiondict.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@
201201
"trafficFile": "string",
202202
"answers": "string",
203203
"batch": "boolean",
204+
"base64Parameter": "string",
204205
"binaryFields": "string",
205206
"charset": "string",
206207
"checkInternet": "boolean",

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.4.4.2"
21+
VERSION = "1.4.4.3"
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -616,6 +616,9 @@ def cmdLineParser(argv=None):
616616
general.add_argument("--answers", dest="answers",
617617
help="Set predefined answers (e.g. \"quit=N,follow=N\")")
618618

619+
general.add_argument("--base64", dest="base64Parameter",
620+
help="Parameter(s) containing Base64 encoded data")
621+
619622
general.add_argument("--batch", dest="batch", action="store_true",
620623
help="Never ask for user input, use the default behavior")
621624

@@ -746,9 +749,6 @@ def cmdLineParser(argv=None):
746749
help="Simple wizard interface for beginner users")
747750

748751
# Hidden and/or experimental options
749-
parser.add_argument("--base64", dest="base64Parameter",
750-
help=SUPPRESS) # "Parameter(s) containing Base64 encoded values"
751-
752752
parser.add_argument("--crack", dest="hashFile",
753753
help=SUPPRESS) # "Load and crack hashes from a file (standalone)"
754754

sqlmap.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -693,6 +693,9 @@ trafficFile =
693693
# Set predefined answers (e.g. "quit=N,follow=N").
694694
answers =
695695

696+
# Parameter(s) containing Base64 encoded data
697+
base64Parameter =
698+
696699
# Never ask for user input, use the default behaviour.
697700
# Valid: True or False
698701
batch = False

0 commit comments

Comments
 (0)
X Tutup