-
Notifications
You must be signed in to change notification settings - Fork 534
/
decoder_chr.py
46 lines (34 loc) · 1.07 KB
/
decoder_chr.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
__description__ = 'CHR decoder for oledump.py'
__author__ = 'Didier Stevens'
__version__ = '0.0.2'
__date__ = '2019/11/24'
"""
Source code put in public domain by Didier Stevens, no Copyright
https://DidierStevens.com
Use at your own risk
History:
2014/12/31: start
2019/11/24: Python 3 fixes
Todo:
"""
import re
class cCHRDecoder(cDecoderParent):
name = 'CHR decoder'
def __init__(self, stream, options):
self.stream = stream
self.options = options
self.done = False
def Available(self):
return not self.done
def Decode(self):
if sys.version_info[0] > 2:
decoded = bytes([int(s[4:-1]) for s in re.compile('chr\(\d+\)', re.IGNORECASE).findall(SearchAndDecompress(self.stream))])
else:
decoded = ''.join([chr(int(s[4:-1])) for s in re.compile('chr\(\d+\)', re.IGNORECASE).findall(SearchAndDecompress(self.stream))])
self.name = 'CHR decoder'
self.done = True
return decoded
def Name(self):
return self.name
AddDecoder(cCHRDecoder)