mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-26 11:33:47 +03:00
Merge pull request #2086 from deadworoz/patch-1
Converting a command to lowercase breaks a case-sensitive URL
This commit is contained in:
commit
a1f85df12b
|
@ -722,7 +722,7 @@ def client(host=RESTAPI_DEFAULT_ADDRESS, port=RESTAPI_DEFAULT_PORT):
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
command = raw_input("api%s> " % (" (%s)" % taskid if taskid else "")).strip().lower()
|
command = raw_input("api%s> " % (" (%s)" % taskid if taskid else "")).strip()
|
||||||
except (EOFError, KeyboardInterrupt):
|
except (EOFError, KeyboardInterrupt):
|
||||||
print
|
print
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in New Issue
Block a user