mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Fix for Issue #42
This commit is contained in:
@@ -46,7 +46,7 @@ class Google:
|
||||
HTTP addresses
|
||||
"""
|
||||
|
||||
retVal = re.findall(GOOGLE_REGEX, page, re.I | re.S)
|
||||
retVal = [match.group(1) for match in re.finditer(GOOGLE_REGEX, page, re.I | re.S)]
|
||||
|
||||
return retVal
|
||||
|
||||
|
||||
Reference in New Issue
Block a user