File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1818from 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 "
2222TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2323TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2424VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments