mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-03 11:45:46 +03:00
patch for a problem reported by m.martin2311@yahoo.com (unknown charset 'is0-8859-1')
This commit is contained in:
parent
ac2550535c
commit
098f53d57a
|
@ -120,6 +120,8 @@ def checkCharEncoding(encoding):
|
|||
encoding = 'windows-%s' % encoding[7:]
|
||||
elif encoding.find('iso-88') > 0:
|
||||
encoding = encoding[encoding.find('iso-88'):]
|
||||
elif encoding.startswith('is0-88'):
|
||||
encoding = 'iso%s' % encoding[4:]
|
||||
|
||||
# http://philip.html5.org/data/charsets-2.html
|
||||
if encoding in translate:
|
||||
|
|
Loading…
Reference in New Issue
Block a user