mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-10-31 16:07:55 +03:00 
			
		
		
		
	Fixes #4118
This commit is contained in:
		
							parent
							
								
									c3fe9a0d47
								
							
						
					
					
						commit
						e1502e0cea
					
				|  | @ -18,7 +18,7 @@ from lib.core.enums import OS | ||||||
| from thirdparty.six import unichr as _unichr | from thirdparty.six import unichr as _unichr | ||||||
| 
 | 
 | ||||||
| # sqlmap version (<major>.<minor>.<month>.<monthly commit>) | # sqlmap version (<major>.<minor>.<month>.<monthly commit>) | ||||||
| VERSION = "1.4.2.35" | VERSION = "1.4.2.36" | ||||||
| TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" | TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" | ||||||
| TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} | TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} | ||||||
| VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) | VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) | ||||||
|  |  | ||||||
|  | @ -115,8 +115,8 @@ class DNSServer(object): | ||||||
|         with self._lock: |         with self._lock: | ||||||
|             for _ in self._requests: |             for _ in self._requests: | ||||||
|                 if prefix is None and suffix is None or re.search(b"%s\\..+\\.%s" % (prefix, suffix), _, re.I): |                 if prefix is None and suffix is None or re.search(b"%s\\..+\\.%s" % (prefix, suffix), _, re.I): | ||||||
|                     retVal = _ |  | ||||||
|                     self._requests.remove(_) |                     self._requests.remove(_) | ||||||
|  |                     retVal = _.decode() | ||||||
|                     break |                     break | ||||||
| 
 | 
 | ||||||
|         return retVal |         return retVal | ||||||
|  | @ -165,7 +165,7 @@ if __name__ == "__main__": | ||||||
|                 if _ is None: |                 if _ is None: | ||||||
|                     break |                     break | ||||||
|                 else: |                 else: | ||||||
|                     print("[i] %s" % _.decode()) |                     print("[i] %s" % _) | ||||||
| 
 | 
 | ||||||
|             time.sleep(1) |             time.sleep(1) | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user