2010-01-25 03:25:58 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2010-01-25 12:21:39 +03:00
|
|
|
$Id$
|
2010-01-25 03:25:58 +03: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
|
2010-01-25 03:25:58 +03:00
|
|
|
"""
|
2010-05-29 14:10:28 +04:00
|
|
|
|
|
|
|
import re
|
|
|
|
|
2010-05-21 18:42:59 +04:00
|
|
|
from lib.core.common import getCompiledRegex
|
2010-10-07 02:43:04 +04:00
|
|
|
from lib.core.common import readXmlFile
|
2010-10-25 19:37:43 +04:00
|
|
|
from lib.core.convert import urldecode
|
2010-05-29 14:10:28 +04:00
|
|
|
from lib.core.data import conf
|
2010-01-25 13:06:52 +03:00
|
|
|
from lib.core.data import paths
|
2010-01-25 03:25:58 +03:00
|
|
|
from lib.core.data import logger
|
|
|
|
|
2010-10-25 19:37:43 +04:00
|
|
|
|
2010-01-25 03:25:58 +03:00
|
|
|
rules = None
|
|
|
|
|
2010-01-25 13:06:52 +03:00
|
|
|
def __adjustGrammar(string):
|
|
|
|
string = re.sub('\ADetects', 'Detected', string)
|
|
|
|
string = re.sub('\Afinds', 'Found', string)
|
|
|
|
string = re.sub('attempts\Z', 'attempt', string)
|
|
|
|
string = re.sub('injections\Z', 'injection', string)
|
|
|
|
string = re.sub('attacks\Z', 'attack', string)
|
2010-05-29 14:10:28 +04:00
|
|
|
|
2010-01-25 13:06:52 +03:00
|
|
|
return string
|
|
|
|
|
2010-10-25 19:37:43 +04:00
|
|
|
def checkPayload(payload):
|
2010-01-25 03:25:58 +03:00
|
|
|
"""
|
2010-05-29 14:10:28 +04:00
|
|
|
This method checks if the generated payload is detectable by the
|
|
|
|
PHPIDS filter rules
|
2010-01-25 03:25:58 +03:00
|
|
|
"""
|
2010-05-29 14:10:28 +04:00
|
|
|
|
2010-01-25 03:25:58 +03:00
|
|
|
global rules
|
|
|
|
|
2010-10-25 19:37:43 +04:00
|
|
|
payload = urldecode(payload)
|
|
|
|
|
2010-01-25 03:25:58 +03:00
|
|
|
if not rules:
|
2010-10-25 22:38:54 +04:00
|
|
|
xmlrules = readXmlFile(paths.PHPIDS_RULES_XML)
|
2010-01-25 03:25:58 +03:00
|
|
|
rules = []
|
2010-05-29 14:10:28 +04:00
|
|
|
|
2010-01-25 03:25:58 +03:00
|
|
|
for xmlrule in xmlrules.getElementsByTagName("filter"):
|
2010-10-25 19:37:43 +04:00
|
|
|
rule = "(?i)%s" % xmlrule.getElementsByTagName('rule')[0].childNodes[0].nodeValue
|
|
|
|
desc = __adjustGrammar(xmlrule.getElementsByTagName('description')[0].childNodes[0].nodeValue)
|
|
|
|
rules.append((rule, desc))
|
|
|
|
|
|
|
|
if payload:
|
|
|
|
for rule, desc in rules:
|
2010-10-29 15:00:23 +04:00
|
|
|
regObj = getCompiledRegex(rule)
|
|
|
|
if regObj.search(payload):
|
|
|
|
logger.warn("highly probable IDS/IPS detection: '%s: %s'" % (desc, payload))
|