mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-10 10:22:41 +01:00
Minor bug fix in syntax
This commit is contained in:
parent
0acef530ce
commit
2f452480b3
1 changed files with 2 additions and 2 deletions
|
|
@ -136,8 +136,8 @@ class Web:
|
|||
|
||||
message = "which web application language does the web server "
|
||||
message += "support?\n"
|
||||
message += "[1] ASP%s\n" % " (default)" if kb.os == "Windows" else ""
|
||||
message += "[2] PHP%s\n" % "" if kb.os == "Windows" else " (default)"
|
||||
message += "[1] ASP%s\n" % (" (default)" if kb.os == "Windows" else "")
|
||||
message += "[2] PHP%s\n" % ("" if kb.os == "Windows" else " (default)")
|
||||
message += "[3] JSP"
|
||||
|
||||
while True:
|
||||
|
|
|
|||
Loading…
Reference in a new issue