mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-26 19:43:48 +03:00
fix for a bug reported by nightman (unknown charset 'null')
This commit is contained in:
parent
d757e4ae1c
commit
5abbea4a9f
|
@ -92,6 +92,8 @@ def checkCharEncoding(encoding):
|
||||||
encoding = 'cp%s' % encoding[3:]
|
encoding = 'cp%s' % encoding[3:]
|
||||||
elif encoding.startswith('windows') and not encoding.startswith('windows-'):
|
elif encoding.startswith('windows') and not encoding.startswith('windows-'):
|
||||||
encoding = 'windows-%s' % encoding[7:]
|
encoding = 'windows-%s' % encoding[7:]
|
||||||
|
elif encoding == 'null':
|
||||||
|
return None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
codecs.lookup(encoding)
|
codecs.lookup(encoding)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user