mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
fix for a bug reported by g@brindi.si (UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position
47: ordinal not in range(128))
This commit is contained in:
@@ -55,7 +55,7 @@ class Crawler:
|
||||
content = None
|
||||
try:
|
||||
if current:
|
||||
content = Request.getPage(url=current, raise404=False)[0]
|
||||
content = Request.getPage(url=current, crawling=True, raise404=False)[0]
|
||||
except sqlmapConnectionException, e:
|
||||
errMsg = "connection exception detected (%s). skipping " % e
|
||||
errMsg += "url '%s'" % current
|
||||
|
||||
Reference in New Issue
Block a user