mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-23 01:56:36 +03:00
fix for a bug reported by ToR (AttributeError: 'NoneType' object has no attribute 'redcode')
This commit is contained in:
parent
1c51e11c5c
commit
a883ce26b5
|
@ -55,7 +55,8 @@ class SmartRedirectHandler(urllib2.HTTPRedirectHandler):
|
||||||
if "set-cookie" in headers:
|
if "set-cookie" in headers:
|
||||||
result.setcookie = headers["set-cookie"].split("; path")[0]
|
result.setcookie = headers["set-cookie"].split("; path")[0]
|
||||||
|
|
||||||
result.redcode = code
|
if result:
|
||||||
|
result.redcode = code
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user