mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
minor fix for a invalid charset reported by Kirill
This commit is contained in:
@@ -95,7 +95,7 @@ def checkCharEncoding(encoding):
|
||||
return encoding
|
||||
|
||||
# http://www.destructor.de/charsets/index.htm
|
||||
translate = { 'windows-874': 'iso-8859-11', 'en_us': 'utf8' }
|
||||
translate = { 'windows-874': 'iso-8859-11', 'en_us': 'utf8', 'macintosh': 'iso-8859-1' }
|
||||
|
||||
for delimiter in (';', ','):
|
||||
if delimiter in encoding:
|
||||
|
||||
Reference in New Issue
Block a user