mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-10-31 16:07:55 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			898 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			898 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| 
 | |
| """
 | |
| Copyright (c) 2006-2017 sqlmap developers (http://sqlmap.org/)
 | |
| See the file 'LICENSE' for copying permission
 | |
| """
 | |
| 
 | |
| import binascii
 | |
| 
 | |
| from lib.core.convert import utf8encode
 | |
| from plugins.generic.syntax import Syntax as GenericSyntax
 | |
| 
 | |
| class Syntax(GenericSyntax):
 | |
|     def __init__(self):
 | |
|         GenericSyntax.__init__(self)
 | |
| 
 | |
|     @staticmethod
 | |
|     def escape(expression, quote=True):
 | |
|         """
 | |
|         >>> Syntax.escape("SELECT 'abcdefgh' FROM foobar")
 | |
|         'SELECT 0x6162636465666768 FROM foobar'
 | |
|         """
 | |
| 
 | |
|         def escaper(value):
 | |
|             retVal = None
 | |
|             try:
 | |
|                 retVal = "0x%s" % binascii.hexlify(value)
 | |
|             except UnicodeEncodeError:
 | |
|                 retVal = "CONVERT(0x%s USING utf8)" % "".join("%.2x" % ord(_) for _ in utf8encode(value))
 | |
|             return retVal
 | |
| 
 | |
|         return Syntax._escape(expression, quote, escaper)
 |