mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
fix for a bug reported by nightman (unknown charset 'null')
This commit is contained in:
@@ -92,6 +92,8 @@ def checkCharEncoding(encoding):
|
||||
encoding = 'cp%s' % encoding[3:]
|
||||
elif encoding.startswith('windows') and not encoding.startswith('windows-'):
|
||||
encoding = 'windows-%s' % encoding[7:]
|
||||
elif encoding == 'null':
|
||||
return None
|
||||
|
||||
try:
|
||||
codecs.lookup(encoding)
|
||||
|
||||
Reference in New Issue
Block a user