mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-10-30 23:47:45 +03:00 
			
		
		
		
	Patch for #4332
This commit is contained in:
		
							parent
							
								
									b42b62ae38
								
							
						
					
					
						commit
						c4a692abe3
					
				|  | @ -18,7 +18,7 @@ from lib.core.enums import OS | |||
| from thirdparty.six import unichr as _unichr | ||||
| 
 | ||||
| # sqlmap version (<major>.<minor>.<month>.<monthly commit>) | ||||
| VERSION = "1.4.9.3" | ||||
| VERSION = "1.4.9.4" | ||||
| TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" | ||||
| 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) | ||||
|  |  | |||
|  | @ -952,8 +952,8 @@ def cmdLineParser(argv=None): | |||
|                 argv[i] = "" | ||||
|             elif argv[i] in DEPRECATED_OPTIONS: | ||||
|                 argv[i] = "" | ||||
|             elif any(argv[i].startswith(_) for _ in ("--tamper",)): | ||||
|                 key = re.search(r"\-\-(\w+)", argv[i]).group(1) | ||||
|             elif any(argv[i].startswith(_) for _ in ("--tamper", "--ignore-code", "--skip")): | ||||
|                 key = re.search(r"\-?\-(\w+)\b", argv[i]).group(1) | ||||
|                 index = auxIndexes.get(key, None) | ||||
|                 if index is None: | ||||
|                     index = i if '=' in argv[i] else (i + 1 if i + 1 < len(argv) and not argv[i + 1].startswith('-') else None) | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user