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
18818863ae69713c6ea9abfa10e71dfab8f2dcf42432177a38d2c1e98785bf1468674c lib/core/replication.py
1891895bad5bc7115051cef7b84efa73fbafbf5e1db46eef32a445056b56cda750b66f lib/core/revision.py
1901900dcb52c9c76a4b0acf2e9038f7d8f08c14543cef3cf7032831c6c0a99376ad24 lib/core/session.py
191- c031ca6d1fbf0edc82217fb8879e7abc4a8072b06b89e0f02f799e7f81859974 lib/core/settings.py
191+ 10e31751611c9eacabdd2c2514fafc887e00f33969393c4f87145feae32c53cc lib/core/settings.py
192192a1e4f2860bffc73bbf2e5db293fa49dcb600ea35f950cda43dc953b3160ab3db lib/core/shell.py
193193841716e87b90a3b598515910841f7cf8d33bb87c24a27fba1a80e36a831cbcd7 lib/core/subprocessng.py
1941949731092f195e346716929323ea3c93247b23b9b92b0f32d3fd0acc3adf9876cc lib/core/target.py
@@ -199,7 +199,7 @@ b1071f449a66b4ceacd4b84b33a73d9e0a3197d271d72daaa406ba473a8bb625 lib/core/testi
19919912cbead4e9e563b970fafb891127927445bd53bada1fac323b9cd27da551ba30 lib/core/wordlist.py
2002001d6e741e19e467650dce2ca84aa824d6df68ff74aedbe4afa8dbdb0193d94918 lib/__init__.py
201201a027f4c44811cb74aa367525f353706de3d3fc719e6c6162f7a61dc838acf0c2 lib/parse/banner.py
202- f8d1701df33a31920e2ebf9a23fa7b6f4ccd2aff22b4ae1e14b495e51e5939fe lib/parse/cmdline.py
202+ 2838467a296a05c6c94ddef1f42f1e7cddee3a9e755143bcb70129233056abad lib/parse/cmdline.py
2032033907765df08c31f8d59350a287e826bd315a7714dc0e87496f67c8a0879c86ac lib/parse/configfile.py
204204ced03337edd5a16b56a379c9ac47775895e1053003c25f6ba5bec721b6e3aa64 lib/parse/handler.py
2052053704a02dcf00b0988b101e30b2e0d48acdd20227e46d8b552e46c55d7e9bf28c lib/parse/headers.py
Original file line number Diff line number Diff line change 1919from thirdparty import six
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.9.2.11 "
22+ VERSION = "1.9.2.12 "
2323TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2424TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2525VERSION_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):
10101010 argv [i ] = ""
10111011 elif argv [i ] in DEPRECATED_OPTIONS :
10121012 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
10131017 elif argv [i ].startswith ("--data-raw" ):
10141018 argv [i ] = argv [i ].replace ("--data-raw" , "--data" , 1 )
10151019 elif argv [i ].startswith ("--auth-creds" ):
@@ -1018,7 +1022,6 @@ def _format_action_invocation(self, action):
10181022 argv [i ] = argv [i ].replace ("--drop-cookie" , "--drop-set-cookie" , 1 )
10191023 elif re .search (r"\A--tamper[^=\s]" , argv [i ]):
10201024 argv [i ] = ""
1021- continue
10221025 elif re .search (r"\A(--(tamper|ignore-code|skip))(?!-)" , argv [i ]):
10231026 key = re .search (r"\-?\-(\w+)\b" , argv [i ]).group (1 )
10241027 index = auxIndexes .get (key , None )
You can’t perform that action at this time.
0 commit comments