File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ c6a182f6b7d3b0ad6f0888ea2a4de4148f0770549038d7de8bc3267b4c6635f7 lib/core/readl
188
188
63ae69713c6ea9abfa10e71dfab8f2dcf42432177a38d2c1e98785bf1468674c lib/core/replication.py
189
189
5bad5bc7115051cef7b84efa73fbafbf5e1db46eef32a445056b56cda750b66f lib/core/revision.py
190
190
0dcb52c9c76a4b0acf2e9038f7d8f08c14543cef3cf7032831c6c0a99376ad24 lib/core/session.py
191
- c031ca6d1fbf0edc82217fb8879e7abc4a8072b06b89e0f02f799e7f81859974 lib/core/settings.py
191
+ 10e31751611c9eacabdd2c2514fafc887e00f33969393c4f87145feae32c53cc lib/core/settings.py
192
192
a1e4f2860bffc73bbf2e5db293fa49dcb600ea35f950cda43dc953b3160ab3db lib/core/shell.py
193
193
841716e87b90a3b598515910841f7cf8d33bb87c24a27fba1a80e36a831cbcd7 lib/core/subprocessng.py
194
194
9731092f195e346716929323ea3c93247b23b9b92b0f32d3fd0acc3adf9876cc lib/core/target.py
@@ -199,7 +199,7 @@ b1071f449a66b4ceacd4b84b33a73d9e0a3197d271d72daaa406ba473a8bb625 lib/core/testi
199
199
12cbead4e9e563b970fafb891127927445bd53bada1fac323b9cd27da551ba30 lib/core/wordlist.py
200
200
1d6e741e19e467650dce2ca84aa824d6df68ff74aedbe4afa8dbdb0193d94918 lib/__init__.py
201
201
a027f4c44811cb74aa367525f353706de3d3fc719e6c6162f7a61dc838acf0c2 lib/parse/banner.py
202
- f8d1701df33a31920e2ebf9a23fa7b6f4ccd2aff22b4ae1e14b495e51e5939fe lib/parse/cmdline.py
202
+ 2838467a296a05c6c94ddef1f42f1e7cddee3a9e755143bcb70129233056abad lib/parse/cmdline.py
203
203
3907765df08c31f8d59350a287e826bd315a7714dc0e87496f67c8a0879c86ac lib/parse/configfile.py
204
204
ced03337edd5a16b56a379c9ac47775895e1053003c25f6ba5bec721b6e3aa64 lib/parse/handler.py
205
205
3704a02dcf00b0988b101e30b2e0d48acdd20227e46d8b552e46c55d7e9bf28c lib/parse/headers.py
Original file line number Diff line number Diff line change 19
19
from thirdparty import six
20
20
21
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
- VERSION = "1.9.2.11 "
22
+ VERSION = "1.9.2.12 "
23
23
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
24
24
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
25
25
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change @@ -1010,6 +1010,10 @@ def _format_action_invocation(self, action):
1010
1010
argv [i ] = ""
1011
1011
elif argv [i ] in DEPRECATED_OPTIONS :
1012
1012
argv [i ] = ""
1013
+ elif argv [i ] in ("-s" , "--silent" ):
1014
+ if i + 1 < len (argv ) and argv [i + 1 ].startswith ('-' ) or i + 1 == len (argv ):
1015
+ argv [i ] = ""
1016
+ conf .verbose = 0
1013
1017
elif argv [i ].startswith ("--data-raw" ):
1014
1018
argv [i ] = argv [i ].replace ("--data-raw" , "--data" , 1 )
1015
1019
elif argv [i ].startswith ("--auth-creds" ):
@@ -1018,7 +1022,6 @@ def _format_action_invocation(self, action):
1018
1022
argv [i ] = argv [i ].replace ("--drop-cookie" , "--drop-set-cookie" , 1 )
1019
1023
elif re .search (r"\A--tamper[^=\s]" , argv [i ]):
1020
1024
argv [i ] = ""
1021
- continue
1022
1025
elif re .search (r"\A(--(tamper|ignore-code|skip))(?!-)" , argv [i ]):
1023
1026
key = re .search (r"\-?\-(\w+)\b" , argv [i ]).group (1 )
1024
1027
index = auxIndexes .get (key , None )
You can’t perform that action at this time.
0 commit comments