mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Minor improvement
This commit is contained in:
parent
9fc856b3a6
commit
0a266f602c
4 changed files with 38 additions and 8 deletions
|
|
@ -141,7 +141,8 @@ def main():
|
|||
banner()
|
||||
|
||||
# Store original command line options for possible later restoration
|
||||
cmdLineOptions.update(cmdLineParser().__dict__)
|
||||
args = cmdLineParser()
|
||||
cmdLineOptions.update(args.__dict__ if hasattr(args, "__dict__") else args)
|
||||
initOptions(cmdLineOptions)
|
||||
|
||||
if checkPipedInput():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue