mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-18 04:20:35 +03:00
Merge pull request #1733 from Aikes/master
Fixes file path traversal issue on win platform.
This commit is contained in:
commit
26b895dd2e
|
@ -622,14 +622,13 @@ def download(taskid, target, filename):
|
||||||
logger.warning("[%s] Invalid task ID provided to download()" % taskid)
|
logger.warning("[%s] Invalid task ID provided to download()" % taskid)
|
||||||
return jsonize({"success": False, "message": "Invalid task ID"})
|
return jsonize({"success": False, "message": "Invalid task ID"})
|
||||||
|
|
||||||
# Prevent file path traversal - the lame way
|
path = os.path.abspath(os.path.join(paths.SQLMAP_OUTPUT_PATH, target, filename))
|
||||||
if ".." in target:
|
# Prevent file path traversal
|
||||||
|
if not path.startswith(paths.SQLMAP_OUTPUT_PATH):
|
||||||
logger.warning("[%s] Forbidden path (%s)" % (taskid, target))
|
logger.warning("[%s] Forbidden path (%s)" % (taskid, target))
|
||||||
return jsonize({"success": False, "message": "Forbidden path"})
|
return jsonize({"success": False, "message": "Forbidden path"})
|
||||||
|
|
||||||
path = os.path.join(paths.SQLMAP_OUTPUT_PATH, target)
|
if os.path.isfile(path):
|
||||||
|
|
||||||
if os.path.exists(path):
|
|
||||||
logger.debug("[%s] Retrieved content of file %s" % (taskid, target))
|
logger.debug("[%s] Retrieved content of file %s" % (taskid, target))
|
||||||
with open(path, 'rb') as inf:
|
with open(path, 'rb') as inf:
|
||||||
file_content = inf.read()
|
file_content = inf.read()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user