-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcipher.py
113 lines (84 loc) · 2.76 KB
/
cipher.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#
# cipher.py
# Cipher, a deobfuscation tool for Sublime Text 3
#
# Written by Metin Carlo DePaolis
# Copyright (c) 2016 Metin Carlo DePaolis
#
# License: MIT
#
import re
import sys
import base64
import urllib
import sublime
import sublime_plugin
def remove_null_bytes(s):
return s.replace('\x00', '')
class Cipher(sublime_plugin.TextCommand):
def run(self, edit):
for region in self.view.sel():
if region.empty():
region = sublime.Region(0, self.view.size())
region_text = self.view.substr(region)
transumted_region = self.transmute(region_text)
self.view.replace(edit, region, transumted_region)
class Base64DecodeCommand(Cipher):
def pad(self, text):
mod = len(text) % 4
if mod == 3:
text = text + '='
elif mod == 2:
text = text + '=='
elif mod == 1:
text = text + '==='
return text
def transmute(self, text):
b64 = base64.b64decode(self.pad(text)).decode('raw_unicode_escape')
return b64
class Base64EncodeCommand(Cipher):
def transmute(self, text):
text = text.encode('raw_unicode_escape')
return base64.b64encode(text).decode('ascii')
class UrlDecode(Cipher):
def transmute(self, text):
try:
result = urllib.parse.unquote(text)
except:
e = sys.exc_info()[1]
result = str(e)
return result
class UrlEncode(Cipher):
def transmute(self, text):
return urllib.parse.quote(text)
class UnicodeEscapeDecodeCommand(Cipher):
def transmute(self, text):
transmutation = (text.encode('ascii')).decode('unicode_escape')
return transmutation
class UnicodeEscapeEncodeCommand(Cipher):
def transmute(self, text):
return "Not implemented... yet?"
class UnicodeAndUrlDecodeCommand(Cipher):
def transmute(self, text):
unicode_decoded = (text.encode('ascii')).decode('unicode_escape')
transmutation = urllib.parse.unquote(unicode_decoded)
return transmutation
class UnicodeAndUrlEncodeCommand(Cipher):
def transmute(self, text):
return "Not implemented... yet?"
class FromCharCodeArray(Cipher):
def transmute(self, text):
text = text.replace('[', '')
text = text.replace(']', '')
re.sub(r'\s+', '', text) # remove all whitespace
arr = text.split(',')
arr = [int(i) for i in arr]
transmutation = ''.join(map(chr, arr))
return transmutation
class RemoveNulls(Cipher):
def transmute(self, text):
return remove_null_bytes(text)
class CombineStringConcatenation(Cipher):
def transmute(self, text):
transmutation = re.sub('"\s*\+\s*\"', '', text)
return transmutation