Had problems with Google Dork, did not return any matches.
Checked the html source and found out that two " were missing in the
regular expression that is used.
Changed line 57 in google.py to:
regExpr = "class=\042r\042\076\074a href=\042(http[s]*://.+?)\042\sclass=l"
(added \042 in front of and after the r)
FYI
|