mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
Minor bug fix
This commit is contained in:
@@ -304,6 +304,10 @@ class Connect(object):
|
||||
get = urlencode(get, limit=True)
|
||||
|
||||
if get:
|
||||
if '?' in url:
|
||||
url = "%s%s%s" % (url, DEFAULT_GET_POST_DELIMITER, get)
|
||||
requestMsg += "%s%s" % (DEFAULT_GET_POST_DELIMITER, get)
|
||||
else:
|
||||
url = "%s?%s" % (url, get)
|
||||
requestMsg += "?%s" % get
|
||||
|
||||
|
||||
Reference in New Issue
Block a user