mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-11-04 09:57:38 +03:00 
			
		
		
		
	Merge pull request #1351 from KxCode/patch-1
fix removeDynamicContent bug
This commit is contained in:
		
						commit
						b8f2c2bf8e
					
				| 
						 | 
					@ -2580,7 +2580,7 @@ def findDynamicContent(firstPage, secondPage):
 | 
				
			||||||
            prefix = trimAlphaNum(prefix)
 | 
					            prefix = trimAlphaNum(prefix)
 | 
				
			||||||
            suffix = trimAlphaNum(suffix)
 | 
					            suffix = trimAlphaNum(suffix)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            kb.dynamicMarkings.append((re.escape(prefix[-DYNAMICITY_MARK_LENGTH / 2:]) if prefix else None, re.escape(suffix[:DYNAMICITY_MARK_LENGTH / 2]) if suffix else None))
 | 
					            kb.dynamicMarkings.append((prefix[-DYNAMICITY_MARK_LENGTH / 2:] if prefix else None, suffix[:DYNAMICITY_MARK_LENGTH / 2] if suffix else None))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if len(kb.dynamicMarkings) > 0:
 | 
					    if len(kb.dynamicMarkings) > 0:
 | 
				
			||||||
        infoMsg = "dynamic content marked for removal (%d region%s)" % (len(kb.dynamicMarkings), 's' if len(kb.dynamicMarkings) > 1 else '')
 | 
					        infoMsg = "dynamic content marked for removal (%d region%s)" % (len(kb.dynamicMarkings), 's' if len(kb.dynamicMarkings) > 1 else '')
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user