Skip to content

Commit 76b310c

Browse files
committed
1 parent 9a6acd2 commit 76b310c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

2020
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21-
VERSION = "1.5.4.7"
21+
VERSION = "1.5.4.8"
2222
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2323
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2424
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/utils/search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def _search(dork):
6363
gpage = conf.googlePage if conf.googlePage > 1 else 1
6464
logger.info("using search result page #%d" % gpage)
6565

66-
url = "https://www.google.com/search?"
66+
url = "http://www.google.com/search?" # NOTE: https version goes to the consent
6767
url += "q=%s&" % urlencode(dork, convall=True)
6868
url += "num=100&hl=en&complete=0&safe=off&filter=0&btnG=Search"
6969
url += "&start=%d" % ((gpage - 1) * 100)

0 commit comments

Comments
 (0)