mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Fix for Issue #59
This commit is contained in:
parent
c3c1b9e957
commit
bc5025b06c
1 changed files with 2 additions and 1 deletions
|
|
@ -9,6 +9,7 @@ import cookielib
|
|||
import httplib
|
||||
import re
|
||||
import socket
|
||||
import urllib
|
||||
import urllib2
|
||||
|
||||
from lib.core.common import getUnicode
|
||||
|
|
@ -46,7 +47,7 @@ class Google:
|
|||
HTTP addresses
|
||||
"""
|
||||
|
||||
retVal = [match.group(1) for match in re.finditer(GOOGLE_REGEX, page, re.I | re.S)]
|
||||
retVal = [urllib.unquote(match.group(1)) for match in re.finditer(GOOGLE_REGEX, page, re.I | re.S)]
|
||||
|
||||
return retVal
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue