mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
fix for a bug reported by ToR (AttributeError: 'NoneType' object has no attribute 'redcode')
This commit is contained in:
parent
1c51e11c5c
commit
a883ce26b5
1 changed files with 2 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue