mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-16 19:40:37 +03:00
Fix for Issue #59
This commit is contained in:
parent
c3c1b9e957
commit
bc5025b06c
|
@ -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 New Issue
Block a user