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
							
								
									5d56e89cf5
								
							
						
					
					
						commit
						97bd5355dd
					
				| 
						 | 
				
			
			@ -131,8 +131,8 @@ def checkSqlInjection(place, parameter, value):
 | 
			
		|||
            # value
 | 
			
		||||
            # Parse test's <risk>
 | 
			
		||||
            if test.risk > conf.risk:
 | 
			
		||||
                debugMsg = "skipping test '%s' because the risk " % title
 | 
			
		||||
                debugMsg += "is higher than the provided"
 | 
			
		||||
                debugMsg = "skipping test '%s' because the risk (%d) " % (title, test.risk)
 | 
			
		||||
                debugMsg += "is higher than the provided (%d)" % conf.risk
 | 
			
		||||
                logger.debug(debugMsg)
 | 
			
		||||
                continue
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -140,9 +140,8 @@ def checkSqlInjection(place, parameter, value):
 | 
			
		|||
            # value
 | 
			
		||||
            # Parse test's <level>
 | 
			
		||||
            if test.level > conf.level:
 | 
			
		||||
                debugMsg = "skipping test '%s' because the level" % title
 | 
			
		||||
                debugMsg += ", %d, is higher than the provided" % test.level
 | 
			
		||||
                debugMsg += ", %d" % conf.level
 | 
			
		||||
                debugMsg = "skipping test '%s' because the level (%d) " % (title, test.level)
 | 
			
		||||
                debugMsg += "is higher than the provided (%d)" % conf.level
 | 
			
		||||
                logger.debug(debugMsg)
 | 
			
		||||
                continue
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user