mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-10-31 07:57:47 +03:00 
			
		
		
		
	new tamper script (reference: http://hakipedia.com/index.php/SQL_Injection)
This commit is contained in:
		
							parent
							
								
									e6e48c5556
								
							
						
					
					
						commit
						e4089e86e8
					
				
							
								
								
									
										54
									
								
								tamper/space2randomblank.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										54
									
								
								tamper/space2randomblank.py
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,54 @@ | |||
| #!/usr/bin/env python | ||||
| 
 | ||||
| """ | ||||
| $Id$ | ||||
| 
 | ||||
| Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/) | ||||
| See the file 'doc/COPYING' for copying permission | ||||
| """ | ||||
| 
 | ||||
| import random | ||||
| 
 | ||||
| from lib.core.convert import urldecode | ||||
| from lib.core.convert import urlencode | ||||
| 
 | ||||
| def tamper(place, value): | ||||
|     """ | ||||
|     Replaces ' ' with a random blank char from a set ('\r', '\n', '\t') | ||||
|     Example: 'SELECT id FROM users' becomes 'SELECT\rid\tFROM\nusers' | ||||
|     """ | ||||
| 
 | ||||
|     blanks = ['\r', '\n', '\t'] | ||||
|     retVal = value | ||||
| 
 | ||||
|     if value: | ||||
|         if place != "URI": | ||||
|             value = urldecode(value) | ||||
| 
 | ||||
|         retVal = "" | ||||
|         quote, doublequote, firstspace = False, False, False | ||||
| 
 | ||||
|         for i in xrange(len(value)): | ||||
|             if not firstspace: | ||||
|                 if value[i].isspace(): | ||||
|                     firstspace = True | ||||
|                     retVal += random.choice(blanks) | ||||
|                     continue | ||||
| 
 | ||||
|             elif value[i] == '\'': | ||||
|                 quote = not quote | ||||
| 
 | ||||
|             elif value[i] == '"': | ||||
|                 doublequote = not doublequote | ||||
| 
 | ||||
|             elif value[i]==" " and not doublequote and not quote: | ||||
|                 retVal += random.choice(blanks) | ||||
|                 continue | ||||
| 
 | ||||
|             retVal += value[i] | ||||
| 
 | ||||
|         if place != "URI": | ||||
|             retVal = urlencode(retVal) | ||||
| 
 | ||||
|     return retVal | ||||
| 
 | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user