Skip to content

Commit

Permalink
Fix issue reported in #231.
Browse files Browse the repository at this point in the history
  • Loading branch information
CensoredUsername committed Jun 27, 2024
1 parent 34a3d38 commit 55a1b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deobfuscate.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def decrypt_base64(data, count):

@decryptor
def decrypt_string_escape(data, count):
if not all(ord(i) >= 0x20 and ord(i) < 0x80 for i in count.keys()):
if not all(i >= 0x20 and i < 0x80 for i in count.keys()):
return None
try:
newdata = data.decode("unicode-escape").encode('latin1')
Expand Down

0 comments on commit 55a1b10

Please sign in to comment.