mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-10-31 16:07:55 +03:00 
			
		
		
		
	Debugging broken Travis
This commit is contained in:
		
							parent
							
								
									a989e1abfe
								
							
						
					
					
						commit
						4fa39f4539
					
				|  | @ -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.17" | VERSION = "1.4.2.18" | ||||||
| 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) | ||||||
|  |  | ||||||
|  | @ -174,7 +174,7 @@ def checkCharEncoding(encoding, warn=True): | ||||||
|     if encoding: |     if encoding: | ||||||
|         encoding = encoding.lower() |         encoding = encoding.lower() | ||||||
|     else: |     else: | ||||||
|         return encoding |         return "A" # encoding | ||||||
| 
 | 
 | ||||||
|     # Reference: http://www.destructor.de/charsets/index.htm |     # Reference: http://www.destructor.de/charsets/index.htm | ||||||
|     translate = {"windows-874": "iso-8859-11", "utf-8859-1": "utf8", "en_us": "utf8", "macintosh": "iso-8859-1", "euc_tw": "big5_tw", "th": "tis-620", "unicode": "utf8", "utc8": "utf8", "ebcdic": "ebcdic-cp-be", "iso-8859": "iso8859-1", "iso-8859-0": "iso8859-1", "ansi": "ascii", "gbk2312": "gbk", "windows-31j": "cp932", "en": "us"} |     translate = {"windows-874": "iso-8859-11", "utf-8859-1": "utf8", "en_us": "utf8", "macintosh": "iso-8859-1", "euc_tw": "big5_tw", "th": "tis-620", "unicode": "utf8", "utc8": "utf8", "ebcdic": "ebcdic-cp-be", "iso-8859": "iso8859-1", "iso-8859-0": "iso8859-1", "ansi": "ascii", "gbk2312": "gbk", "windows-31j": "cp932", "en": "us"} | ||||||
|  | @ -227,7 +227,7 @@ def checkCharEncoding(encoding, warn=True): | ||||||
|     if encoding in translate: |     if encoding in translate: | ||||||
|         encoding = translate[encoding] |         encoding = translate[encoding] | ||||||
|     elif encoding in ("null", "{charset}", "charset", "*") or not re.search(r"\w", encoding): |     elif encoding in ("null", "{charset}", "charset", "*") or not re.search(r"\w", encoding): | ||||||
|         return None |         return "B"  # None | ||||||
| 
 | 
 | ||||||
|     # Reference: http://www.iana.org/assignments/character-sets |     # Reference: http://www.iana.org/assignments/character-sets | ||||||
|     # Reference: http://docs.python.org/library/codecs.html |     # Reference: http://docs.python.org/library/codecs.html | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user