mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-11-04 09:57:38 +03:00 
			
		
		
		
	Ugly work-around to avoid unescaping WAITFOR DELAY time between single quotes (unescaped CHAR(..) value does not work).
This commit is contained in:
		
							parent
							
								
									9c61adb21d
								
							
						
					
					
						commit
						0c01be0eeb
					
				| 
						 | 
					@ -69,7 +69,7 @@ def unescape(string, dbms):
 | 
				
			||||||
                  "Sybase": Sybase.unescape
 | 
					                  "Sybase": Sybase.unescape
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if dbms in unescaper:
 | 
					    if dbms in unescaper and "WAITFOR DELAY " not in string:
 | 
				
			||||||
        return unescaper[dbms](string)
 | 
					        return unescaper[dbms](string)
 | 
				
			||||||
    else:
 | 
					    else:
 | 
				
			||||||
        return string
 | 
					        return string
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user