mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Fixes #2543
This commit is contained in:
parent
7a18dde2e0
commit
071132cd56
3 changed files with 6 additions and 3 deletions
|
|
@ -279,6 +279,9 @@ class Connect(object):
|
|||
# url splitted with space char while urlencoding it in the later phase
|
||||
url = url.replace(" ", "%20")
|
||||
|
||||
if "://" not in url:
|
||||
url = "http://%s" % url
|
||||
|
||||
conn = None
|
||||
page = None
|
||||
code = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue