mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-28 20:43:49 +03:00
Minor fix
This commit is contained in:
parent
2938ac550c
commit
596cf95040
|
@ -59,9 +59,6 @@ def cmdLineParser():
|
||||||
target.add_option("-r", dest="requestFile",
|
target.add_option("-r", dest="requestFile",
|
||||||
help="Load HTTP request from a file")
|
help="Load HTTP request from a file")
|
||||||
|
|
||||||
target.add_option("-s", dest="sessionFile",
|
|
||||||
help="Load session from a stored (.sqlite) file")
|
|
||||||
|
|
||||||
target.add_option("-g", dest="googleDork",
|
target.add_option("-g", dest="googleDork",
|
||||||
help="Process Google dork results as target URLs")
|
help="Process Google dork results as target URLs")
|
||||||
|
|
||||||
|
@ -523,6 +520,9 @@ def cmdLineParser():
|
||||||
#general.add_option("-x", dest="xmlFile",
|
#general.add_option("-x", dest="xmlFile",
|
||||||
# help="Dump the data into an XML file")
|
# help="Dump the data into an XML file")
|
||||||
|
|
||||||
|
general.add_option("-s", dest="sessionFile",
|
||||||
|
help="Load session from a stored (.sqlite) file")
|
||||||
|
|
||||||
general.add_option("-t", dest="trafficFile",
|
general.add_option("-t", dest="trafficFile",
|
||||||
help="Log all HTTP traffic into a "
|
help="Log all HTTP traffic into a "
|
||||||
"textual file")
|
"textual file")
|
||||||
|
|
|
@ -22,10 +22,6 @@ logFile =
|
||||||
# Example (file content): POST /login.jsp HTTP/1.1\nHost: example.com\nUser-Agent: Mozilla/4.0\n\nuserid=joe&password=guessme
|
# Example (file content): POST /login.jsp HTTP/1.1\nHost: example.com\nUser-Agent: Mozilla/4.0\n\nuserid=joe&password=guessme
|
||||||
requestFile =
|
requestFile =
|
||||||
|
|
||||||
# Load session from a stored (.sqlite) file
|
|
||||||
# Example: output/www.target.com/session.sqlite
|
|
||||||
sessionFile =
|
|
||||||
|
|
||||||
# Rather than providing a target URL, let Google return target
|
# Rather than providing a target URL, let Google return target
|
||||||
# hosts as result of your Google dork expression. For a list of Google
|
# hosts as result of your Google dork expression. For a list of Google
|
||||||
# dorks see Johnny Long Google Hacking Database at
|
# dorks see Johnny Long Google Hacking Database at
|
||||||
|
@ -569,6 +565,10 @@ regType =
|
||||||
# These options can be used to set some general working parameters.
|
# These options can be used to set some general working parameters.
|
||||||
[General]
|
[General]
|
||||||
|
|
||||||
|
# Load session from a stored (.sqlite) file
|
||||||
|
# Example: output/www.target.com/session.sqlite
|
||||||
|
sessionFile =
|
||||||
|
|
||||||
# Log all HTTP traffic into a textual file.
|
# Log all HTTP traffic into a textual file.
|
||||||
trafficFile =
|
trafficFile =
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user