mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-10-30 23:47:45 +03:00 
			
		
		
		
	just in case for trimmed output
This commit is contained in:
		
							parent
							
								
									d2221e4604
								
							
						
					
					
						commit
						6ba9dea640
					
				|  | @ -269,7 +269,10 @@ def unionUse(expression, unpack=True, dump=False): | ||||||
|                         value += output |                         value += output | ||||||
| 
 | 
 | ||||||
|                         if conf.verbose == 1: |                         if conf.verbose == 1: | ||||||
|                             items = extractRegexResult(r'%s(?P<result>.*?)%s' % (kb.misc.start, kb.misc.stop), output, re.DOTALL | re.IGNORECASE).split(kb.misc.delimiter) |                             if all(map(lambda x: x in output, [kb.misc.start, kb.misc.stop])): | ||||||
|  |                                 items = extractRegexResult(r'%s(?P<result>.*?)%s' % (kb.misc.start, kb.misc.stop), output, re.DOTALL | re.IGNORECASE).split(kb.misc.delimiter) | ||||||
|  |                             else: | ||||||
|  |                                 items = output.replace(kb.misc.start, "").replace(kb.misc.stop, "").split(kb.misc.delimiter) | ||||||
|                             status = "[%s] [INFO] retrieved: %s\r\n" % (time.strftime("%X"), safecharencode(",".join(map(lambda x: "\"%s\"" % x, items)))) |                             status = "[%s] [INFO] retrieved: %s\r\n" % (time.strftime("%X"), safecharencode(",".join(map(lambda x: "\"%s\"" % x, items)))) | ||||||
|                             if len(status) > width: |                             if len(status) > width: | ||||||
|                                 status = "%s..." % status[:width - 3] |                                 status = "%s..." % status[:width - 3] | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user