From 0fe2bf5836d2e0d21dd2c66d797723ce02251113 Mon Sep 17 00:00:00 2001 From: e2002e Date: Sun, 25 Apr 2021 20:20:55 +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 ca35856d8..0acd6f48f 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 = "http://www.google.com/search?" # NOTE: https version goes to the consent + url = "https://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)