mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 17:02:39 +01:00
fix for that float() report from Shaohua Pan
This commit is contained in:
parent
a43eb64c5d
commit
1f07db875d
1 changed files with 1 additions and 2 deletions
|
|
@ -141,8 +141,7 @@ def __setOutputResume():
|
|||
if url[0] == "[":
|
||||
url = url[1:]
|
||||
|
||||
if value[-1] == "\n":
|
||||
value = value[:-1]
|
||||
value = value.rstrip('\r\n') #strips both chars independently
|
||||
|
||||
if url not in ( conf.url, conf.hostname ):
|
||||
continue
|
||||
|
|
|
|||
Loading…
Reference in a new issue