sqlmap/lib/controller/action.py

184 lines
5.4 KiB
Python
Raw Normal View History

#!/usr/bin/env python
2008-10-15 19:38:22 +04:00
"""
2016-01-06 02:06:12 +03:00
Copyright (c) 2006-2016 sqlmap developers (http://sqlmap.org/)
2010-10-15 03:18:29 +04:00
See the file 'doc/COPYING' for copying permission
2008-10-15 19:38:22 +04:00
"""
from lib.controller.handler import setHandler
from lib.core.common import Backend
from lib.core.common import Format
2008-10-15 19:38:22 +04:00
from lib.core.data import conf
from lib.core.data import kb
2012-10-05 12:49:31 +04:00
from lib.core.data import logger
2010-09-30 16:35:45 +04:00
from lib.core.data import paths
2013-01-30 19:30:34 +04:00
from lib.core.enums import CONTENT_TYPE
from lib.core.exception import SqlmapNoneDataException
from lib.core.exception import SqlmapUnsupportedDBMSException
2008-10-15 19:38:22 +04:00
from lib.core.settings import SUPPORTED_DBMS
from lib.techniques.brute.use import columnExists
2010-11-09 12:42:43 +03:00
from lib.techniques.brute.use import tableExists
2008-10-15 19:38:22 +04:00
def action():
"""
This function exploit the SQL injection on the affected
URL parameter and extract requested data from the
2008-10-15 19:38:22 +04:00
back-end database management system or operating system
if possible
"""
# First of all we have to identify the back-end database management
# system to be able to go ahead with the injection
setHandler()
2008-10-15 19:38:22 +04:00
if not Backend.getDbms() or not conf.dbmsHandler:
htmlParsed = Format.getErrorParsedDBMSes()
2008-10-15 19:38:22 +04:00
2011-04-30 17:20:05 +04:00
errMsg = "sqlmap was not able to fingerprint the "
2008-10-15 19:38:22 +04:00
errMsg += "back-end database management system"
if htmlParsed:
errMsg += ", but from the HTML error page it was "
errMsg += "possible to determinate that the "
2012-05-09 14:06:23 +04:00
errMsg += "back-end DBMS is %s" % htmlParsed
2008-10-15 19:38:22 +04:00
if htmlParsed and htmlParsed.lower() in SUPPORTED_DBMS:
errMsg += ". Do not specify the back-end DBMS manually, "
errMsg += "sqlmap will fingerprint the DBMS for you"
elif kb.nullConnection:
errMsg += ". You can try to rerun without using optimization "
errMsg += "switch '%s'" % ("-o" if conf.optimize else "--null-connection")
2008-10-15 19:38:22 +04:00
raise SqlmapUnsupportedDBMSException(errMsg)
2008-10-15 19:38:22 +04:00
conf.dumper.singleString(conf.dbmsHandler.getFingerprint())
2008-10-15 19:38:22 +04:00
# Enumeration options
if conf.getBanner:
conf.dumper.banner(conf.dbmsHandler.getBanner())
2008-10-15 19:38:22 +04:00
if conf.getCurrentUser:
conf.dumper.currentUser(conf.dbmsHandler.getCurrentUser())
2008-10-15 19:38:22 +04:00
if conf.getCurrentDb:
conf.dumper.currentDb(conf.dbmsHandler.getCurrentDb())
2008-10-15 19:38:22 +04:00
if conf.getHostname:
conf.dumper.hostname(conf.dbmsHandler.getHostname())
if conf.isDba:
conf.dumper.dba(conf.dbmsHandler.isDba())
2008-10-15 19:38:22 +04:00
if conf.getUsers:
conf.dumper.users(conf.dbmsHandler.getUsers())
2008-10-15 19:38:22 +04:00
if conf.getPasswordHashes:
2012-10-05 12:49:31 +04:00
try:
conf.dumper.userSettings("database management system users password hashes",
2013-01-30 19:30:34 +04:00
conf.dbmsHandler.getPasswordHashes(), "password hash", CONTENT_TYPE.PASSWORDS)
except SqlmapNoneDataException, ex:
2012-10-05 12:49:31 +04:00
logger.critical(ex)
except:
raise
2008-10-15 19:38:22 +04:00
if conf.getPrivileges:
2012-10-05 12:49:31 +04:00
try:
conf.dumper.userSettings("database management system users privileges",
2013-01-30 19:30:34 +04:00
conf.dbmsHandler.getPrivileges(), "privilege", CONTENT_TYPE.PRIVILEGES)
except SqlmapNoneDataException, ex:
2012-10-05 12:49:31 +04:00
logger.critical(ex)
except:
raise
2008-10-15 19:38:22 +04:00
if conf.getRoles:
2012-10-05 12:49:31 +04:00
try:
conf.dumper.userSettings("database management system users roles",
2013-01-30 19:30:34 +04:00
conf.dbmsHandler.getRoles(), "role", CONTENT_TYPE.ROLES)
except SqlmapNoneDataException, ex:
2012-10-05 12:49:31 +04:00
logger.critical(ex)
except:
raise
2008-10-15 19:38:22 +04:00
if conf.getDbs:
conf.dumper.dbs(conf.dbmsHandler.getDbs())
2008-10-15 19:38:22 +04:00
if conf.getTables:
conf.dumper.dbTables(conf.dbmsHandler.getTables())
2008-10-15 19:38:22 +04:00
if conf.commonTables:
conf.dumper.dbTables(tableExists(paths.COMMON_TABLES))
2008-10-15 19:38:22 +04:00
if conf.getSchema:
2013-01-30 19:30:34 +04:00
conf.dumper.dbTableColumns(conf.dbmsHandler.getSchema(), CONTENT_TYPE.SCHEMA)
if conf.getColumns:
2013-01-30 19:30:34 +04:00
conf.dumper.dbTableColumns(conf.dbmsHandler.getColumns(), CONTENT_TYPE.COLUMNS)
if conf.getCount:
conf.dumper.dbTablesCount(conf.dbmsHandler.getCount())
if conf.commonColumns:
conf.dumper.dbTableColumns(columnExists(paths.COMMON_COLUMNS))
2008-10-15 19:38:22 +04:00
if conf.dumpTable:
conf.dbmsHandler.dumpTable()
2008-10-15 19:38:22 +04:00
if conf.dumpAll:
conf.dbmsHandler.dumpAll()
if conf.search:
conf.dbmsHandler.search()
2008-10-15 19:38:22 +04:00
if conf.query:
conf.dumper.query(conf.query, conf.dbmsHandler.sqlQuery(conf.query))
2008-10-15 19:38:22 +04:00
if conf.sqlShell:
conf.dbmsHandler.sqlShell()
2012-07-10 03:27:08 +04:00
if conf.sqlFile:
conf.dbmsHandler.sqlFile()
# User-defined function options
if conf.udfInject:
conf.dbmsHandler.udfInjectCustom()
2008-10-15 19:38:22 +04:00
# File system options
if conf.rFile:
2012-12-19 18:12:45 +04:00
conf.dumper.rFile(conf.dbmsHandler.readFile(conf.rFile))
2008-10-15 19:38:22 +04:00
if conf.wFile:
conf.dbmsHandler.writeFile(conf.wFile, conf.dFile, conf.wFileType)
# Operating system options
if conf.osCmd:
conf.dbmsHandler.osCmd()
2008-10-15 19:38:22 +04:00
if conf.osShell:
conf.dbmsHandler.osShell()
if conf.osPwn:
conf.dbmsHandler.osPwn()
if conf.osSmb:
conf.dbmsHandler.osSmb()
if conf.osBof:
conf.dbmsHandler.osBof()
# Windows registry options
if conf.regRead:
conf.dumper.registerValue(conf.dbmsHandler.regRead())
if conf.regAdd:
conf.dbmsHandler.regAdd()
if conf.regDel:
conf.dbmsHandler.regDel()
# Miscellaneous options
if conf.cleanup:
conf.dbmsHandler.cleanup()
if conf.direct:
conf.dbmsConnector.close()