mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Update for #1402
This commit is contained in:
parent
b3fdbe24c2
commit
2453b02b63
|
@ -36,14 +36,17 @@ from lib.core.shell import clearHistory
|
||||||
from lib.core.shell import loadHistory
|
from lib.core.shell import loadHistory
|
||||||
from lib.core.shell import saveHistory
|
from lib.core.shell import saveHistory
|
||||||
|
|
||||||
def cmdLineParser():
|
def cmdLineParser(argv=None):
|
||||||
"""
|
"""
|
||||||
This function parses the command line parameters and arguments
|
This function parses the command line parameters and arguments
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
if not argv:
|
||||||
|
argv = sys.argv
|
||||||
|
|
||||||
checkSystemEncoding()
|
checkSystemEncoding()
|
||||||
|
|
||||||
_ = getUnicode(os.path.basename(sys.argv[0]), encoding=sys.getfilesystemencoding())
|
_ = getUnicode(os.path.basename(argv[0]), encoding=sys.getfilesystemencoding())
|
||||||
|
|
||||||
usage = "%s%s [options]" % ("python " if not IS_WIN else "", \
|
usage = "%s%s [options]" % ("python " if not IS_WIN else "", \
|
||||||
"\"%s\"" % _ if " " in _ else _)
|
"\"%s\"" % _ if " " in _ else _)
|
||||||
|
@ -802,14 +805,15 @@ def cmdLineParser():
|
||||||
option = parser.get_option("-h")
|
option = parser.get_option("-h")
|
||||||
option.help = option.help.capitalize().replace("this help", "basic help")
|
option.help = option.help.capitalize().replace("this help", "basic help")
|
||||||
|
|
||||||
argv = []
|
_ = []
|
||||||
prompt = False
|
prompt = False
|
||||||
advancedHelp = True
|
advancedHelp = True
|
||||||
extraHeaders = []
|
extraHeaders = []
|
||||||
|
|
||||||
for arg in sys.argv:
|
for arg in argv:
|
||||||
argv.append(getUnicode(arg, encoding=sys.getfilesystemencoding()))
|
_.append(getUnicode(arg, encoding=sys.getfilesystemencoding()))
|
||||||
|
|
||||||
|
argv = _
|
||||||
checkDeprecatedOptions(argv)
|
checkDeprecatedOptions(argv)
|
||||||
|
|
||||||
prompt = "--sqlmap-shell" in argv
|
prompt = "--sqlmap-shell" in argv
|
||||||
|
|
133
lib/utils/api.py
133
lib/utils/api.py
|
@ -8,13 +8,15 @@ See the file 'doc/COPYING' for copying permission
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
|
import re
|
||||||
|
import shlex
|
||||||
import sqlite3
|
import sqlite3
|
||||||
import sys
|
import sys
|
||||||
import tempfile
|
import tempfile
|
||||||
import time
|
import time
|
||||||
import urllib2
|
import urllib2
|
||||||
from pprint import pformat
|
|
||||||
|
|
||||||
|
from lib.core.common import dataToStdout
|
||||||
from lib.core.common import unArrayizeValue
|
from lib.core.common import unArrayizeValue
|
||||||
from lib.core.convert import base64pickle
|
from lib.core.convert import base64pickle
|
||||||
from lib.core.convert import hexencode
|
from lib.core.convert import hexencode
|
||||||
|
@ -645,16 +647,17 @@ def server(host="0.0.0.0", port=RESTAPI_SERVER_PORT):
|
||||||
run(host=host, port=port, quiet=True, debug=False)
|
run(host=host, port=port, quiet=True, debug=False)
|
||||||
|
|
||||||
|
|
||||||
def _cpost(url, data=None):
|
def _client(url, data=None):
|
||||||
logger.debug("Calling " + url)
|
logger.debug("Calling " + url)
|
||||||
try:
|
try:
|
||||||
if data is not None:
|
if data is not None:
|
||||||
data = jsonize(data)
|
data = jsonize(data)
|
||||||
req = urllib2.Request(url, data, {'Content-Type': 'application/json'})
|
req = urllib2.Request(url, data, {'Content-Type': 'application/json'})
|
||||||
response = urllib2.urlopen(req)
|
response = urllib2.urlopen(req)
|
||||||
text = dejsonize(response.read())
|
text = response.read()
|
||||||
except:
|
except:
|
||||||
logger.error("Failed to load and parse " + url)
|
if data:
|
||||||
|
logger.error("Failed to load and parse " + url)
|
||||||
raise
|
raise
|
||||||
return text
|
return text
|
||||||
|
|
||||||
|
@ -663,54 +666,94 @@ def client(host=RESTAPI_SERVER_HOST, port=RESTAPI_SERVER_PORT):
|
||||||
"""
|
"""
|
||||||
REST-JSON API client
|
REST-JSON API client
|
||||||
"""
|
"""
|
||||||
help_message = ("Available commands:\nhelp\nnew: start a new scan\n"
|
|
||||||
"use TASKID: run task commands for this task\n"
|
|
||||||
"data, log, status: task commands\nexit")
|
|
||||||
addr = "http://%s:%d" % (host, port)
|
addr = "http://%s:%d" % (host, port)
|
||||||
logger.info("Starting REST-JSON API client to '%s'..." % addr)
|
logger.info("Starting REST-JSON API client to '%s'..." % addr)
|
||||||
logger.info(help_message)
|
|
||||||
|
|
||||||
taskid = ''
|
try:
|
||||||
|
_client(addr)
|
||||||
|
except Exception, ex:
|
||||||
|
if not isinstance(ex, urllib2.HTTPError):
|
||||||
|
errMsg = "there has been a problem while connecting to the "
|
||||||
|
errMsg += "REST-JSON API server at '%s' " % addr
|
||||||
|
errMsg += "(%s)" % ex
|
||||||
|
logger.critical(errMsg)
|
||||||
|
return
|
||||||
|
|
||||||
|
taskid = None
|
||||||
|
logger.info("Type 'help' or '?' for list of available commands")
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
command = raw_input('>>> ').strip()
|
try:
|
||||||
if command in ('data', 'log', 'status'):
|
command = raw_input("api%s> " % (" (%s)" % taskid if taskid else "")).strip()
|
||||||
if taskid == '':
|
except (EOFError, KeyboardInterrupt):
|
||||||
logger.error("No task id in use")
|
print
|
||||||
continue
|
break
|
||||||
res = _cpost(addr + '/scan/' + taskid + '/' + command)
|
|
||||||
if not res['success']:
|
|
||||||
logger.error("Failed to execute command " + command)
|
|
||||||
logger.info(pformat(res, width=1))
|
|
||||||
elif command == 'new':
|
|
||||||
command = raw_input('Give sqlmap parameters e.g.: -u http://testphp.vulnweb.com/artists.php?artist=1 -o\n>>> ').strip()
|
|
||||||
# new task
|
|
||||||
res = _cpost(addr + '/task/new')
|
|
||||||
if not res['success']:
|
|
||||||
logger.error("Failed to create task")
|
|
||||||
continue
|
|
||||||
taskid = res['taskid']
|
|
||||||
logger.info('Task ID is ' + taskid)
|
|
||||||
|
|
||||||
# start scan
|
if command.lower() in ("data", "log", "status"):
|
||||||
original_argv = sys.argv
|
if not taskid:
|
||||||
sys.argv = [sys.argv[0]] + command.split()
|
logger.error("No task ID in use")
|
||||||
try:
|
|
||||||
d = cmdLineParser().__dict__
|
|
||||||
except:
|
|
||||||
continue
|
continue
|
||||||
d = {k: v for k, v in d.iteritems() if v is not None}
|
raw = _client(addr + "/scan/" + taskid + "/" + command)
|
||||||
sys.argv = original_argv
|
res = dejsonize(raw)
|
||||||
res = _cpost(addr + '/scan/' + taskid + '/start', d)
|
if not res["success"]:
|
||||||
if not res['success']:
|
logger.error("Failed to execute command " + command)
|
||||||
|
dataToStdout("%s\n" % raw)
|
||||||
|
|
||||||
|
elif command.lower().startswith("new"):
|
||||||
|
if ' ' not in command:
|
||||||
|
logger.error("Program arguments are missing")
|
||||||
|
continue
|
||||||
|
|
||||||
|
argv = ["sqlmap.py"] + shlex.split(command)[1:]
|
||||||
|
|
||||||
|
try:
|
||||||
|
d = cmdLineParser(argv).__dict__
|
||||||
|
except:
|
||||||
|
taskid = None
|
||||||
|
continue
|
||||||
|
|
||||||
|
d = { k: v for k, v in d.iteritems() if v is not None }
|
||||||
|
|
||||||
|
raw = _client(addr + "/task/new")
|
||||||
|
res = dejsonize(raw)
|
||||||
|
if not res["success"]:
|
||||||
|
logger.error("Failed to create new task")
|
||||||
|
continue
|
||||||
|
taskid = res["taskid"]
|
||||||
|
logger.info("New task ID is '%s'" % taskid)
|
||||||
|
|
||||||
|
raw = _client(addr + "/scan/" + taskid + "/start", d)
|
||||||
|
res = dejsonize(raw)
|
||||||
|
if not res["success"]:
|
||||||
logger.error("Failed to start scan")
|
logger.error("Failed to start scan")
|
||||||
continue
|
continue
|
||||||
logger.info("Scanning started")
|
logger.info("Scanning started")
|
||||||
elif command[0:3] == 'use':
|
|
||||||
taskid = command.split()[1].strip()
|
elif command.lower().startswith("use"):
|
||||||
logger.info("Task ID is now " + taskid)
|
taskid = (command.split()[1] if ' ' in command else "").strip("'\"")
|
||||||
elif command in ('exit', 'bye', 'quit'):
|
if not taskid:
|
||||||
|
logger.error("Task ID is missing")
|
||||||
|
taskid = None
|
||||||
|
continue
|
||||||
|
elif not re.search(r"\A[0-9a-fA-F]{16}\Z", taskid):
|
||||||
|
logger.error("Invalid task ID '%s'" % taskid)
|
||||||
|
taskid = None
|
||||||
|
continue
|
||||||
|
logger.info("Switching to task ID '%s' " % taskid)
|
||||||
|
|
||||||
|
elif command.lower() in ("exit", "bye", "quit", 'q'):
|
||||||
return
|
return
|
||||||
elif command in ('help', '?'):
|
|
||||||
logger.info(help_message)
|
elif command.lower() in ("help", "?"):
|
||||||
else:
|
msg = "help Show this help message\n"
|
||||||
logger.error("Unknown command")
|
msg += "new ARGS Start a new scan task with provided arguments (e.g. 'new -u \"http://testphp.vulnweb.com/artists.php?artist=1\"')\n"
|
||||||
|
msg += "use TASKID Switch current context to different task (e.g. 'use c04d8c5c7582efb4')\n"
|
||||||
|
msg += "data Retrieve and show data for current task\n"
|
||||||
|
msg += "log Retrieve and show log for current task\n"
|
||||||
|
msg += "status Retrieve and show status for current task\n"
|
||||||
|
msg += "exit Exit this client\n"
|
||||||
|
|
||||||
|
dataToStdout(msg)
|
||||||
|
|
||||||
|
elif command:
|
||||||
|
logger.error("Unknown command '%s'" % command)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user