mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-11-04 18:07:46 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			459 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			459 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
"""
 | 
						|
Copyright (c) 2006-2012 sqlmap developers (http://www.sqlmap.org/)
 | 
						|
See the file 'doc/COPYING' for copying permission
 | 
						|
"""
 | 
						|
 | 
						|
from plugins.generic.syntax import Syntax as GenericSyntax
 | 
						|
 | 
						|
class Syntax(GenericSyntax):
 | 
						|
    def __init__(self):
 | 
						|
        GenericSyntax.__init__(self)
 | 
						|
 | 
						|
    @staticmethod
 | 
						|
    def unescape(expression, quote=True):
 | 
						|
        return expression
 | 
						|
 | 
						|
    @staticmethod
 | 
						|
    def escape(expression):
 | 
						|
        return expression
 |