mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-11-04 01:47:37 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
"""
 | 
						|
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
 | 
						|
See the file 'doc/COPYING' for copying permission
 | 
						|
"""
 | 
						|
 | 
						|
import binascii
 | 
						|
import re
 | 
						|
 | 
						|
from lib.core.convert import utf8encode
 | 
						|
from lib.core.exception import sqlmapSyntaxException
 | 
						|
from plugins.generic.syntax import Syntax as GenericSyntax
 | 
						|
 | 
						|
class Syntax(GenericSyntax):
 | 
						|
    def __init__(self):
 | 
						|
        GenericSyntax.__init__(self)
 | 
						|
 | 
						|
    @staticmethod
 | 
						|
    def unescape(expression, quote=True):
 | 
						|
        if quote:
 | 
						|
            unescaped = expression
 | 
						|
            for item in re.findall(r"'[^']+'", expression, re.S):
 | 
						|
                try:
 | 
						|
                    unescaped = unescaped.replace(item, "0x%s" % binascii.hexlify(item.strip("'")))
 | 
						|
                except UnicodeEncodeError:
 | 
						|
                    unescaped = unescaped.replace(item, "CONVERT(0x%s USING utf8)" % "".join("%.2x" % ord(_) for _ in utf8encode(item.strip("'"))))
 | 
						|
        else:
 | 
						|
            unescaped = "0x%s" % binascii.hexlify(expression)
 | 
						|
 | 
						|
        return unescaped
 | 
						|
 | 
						|
    @staticmethod
 | 
						|
    def escape(expression):
 | 
						|
        while True:
 | 
						|
            index = expression.find("CHAR(")
 | 
						|
            if index == -1:
 | 
						|
                break
 | 
						|
 | 
						|
            firstIndex = index
 | 
						|
            index = expression[firstIndex:].find(")")
 | 
						|
 | 
						|
            if index == -1:
 | 
						|
                raise sqlmapSyntaxException, "Unenclosed ) in '%s'" % expression
 | 
						|
 | 
						|
            lastIndex = firstIndex + index + 1
 | 
						|
            old = expression[firstIndex:lastIndex]
 | 
						|
            oldUpper = old.upper()
 | 
						|
            oldUpper = oldUpper.lstrip("CHAR(").rstrip(")")
 | 
						|
            oldUpper = oldUpper.split(",")
 | 
						|
 | 
						|
            escaped = "'%s'" % "".join(chr(int(char)) for char in oldUpper)
 | 
						|
            expression = expression.replace(old, escaped)
 | 
						|
 | 
						|
        original = expression
 | 
						|
        for item in re.findall(r"0x[0-9a-fA-F]+", original, re.S):
 | 
						|
            expression = expression.replace(item, "'%s'" % binascii.unhexlify(item[2:]))
 | 
						|
 | 
						|
        return expression
 |