mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-11-04 09:57:38 +03:00 
			
		
		
		
	minor update
This commit is contained in:
		
							parent
							
								
									a71fcfbcc9
								
							
						
					
					
						commit
						4b641afc46
					
				| 
						 | 
				
			
			@ -1,11 +1,15 @@
 | 
			
		|||
import re
 | 
			
		||||
 | 
			
		||||
from lib.core.convert import urlencode
 | 
			
		||||
from lib.core.exception import sqlmapUnsupportedFeatureException
 | 
			
		||||
 | 
			
		||||
"""
 | 
			
		||||
Tampering value -> urlencode(value)
 | 
			
		||||
"""
 | 
			
		||||
def tamper(place, value):
 | 
			
		||||
    if value:
 | 
			
		||||
        value = urlencode(value)
 | 
			
		||||
        if place != "URI":
 | 
			
		||||
            value = urlencode(value)
 | 
			
		||||
        else:
 | 
			
		||||
            raise sqlmapUnsupportedFeatureException, "can't use tampering module 'doubleencode.py' with 'URI' type injections"
 | 
			
		||||
    return value
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user