From 2975c65f2e44861f4ece1cb0e1356578f4e42c3f Mon Sep 17 00:00:00 2001 From: e2002e Date: Sun, 25 Apr 2021 20:51:56 +0000 Subject: [PATCH] Update search.py --- lib/utils/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/search.py b/lib/utils/search.py index 0acd6f48f..ca35856d8 100644 --- a/lib/utils/search.py +++ b/lib/utils/search.py @@ -63,7 +63,7 @@ def _search(dork): gpage = conf.googlePage if conf.googlePage > 1 else 1 logger.info("using search result page #%d" % gpage) - url = "https://www.google.com/search?" # NOTE: https version goes to the consent + url = "http://www.google.com/search?" # NOTE: https version goes to the consent url += "q=%s&" % urlencode(dork, convall=True) url += "num=100&hl=en&complete=0&safe=off&filter=0&btnG=Search" url += "&start=%d" % ((gpage - 1) * 100)