mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-28 20:16:28 +00:00
Fix for Issue #42
This commit is contained in:
parent
f495cfa139
commit
2a72fcce2b
3 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue