-
Notifications
You must be signed in to change notification settings - Fork 9
/
xssencode.py
579 lines (479 loc) · 18 KB
/
xssencode.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
import sublime
import sublime_plugin
__VERSION__ = '1.0.5'
class XssEncodeCommand(sublime_plugin.TextCommand):
def run(self, edit):
for region in self.view.sel():
if region.empty():
region = sublime.Region(0, self.view.size())
text = self.view.substr(region)
replacement = self.convert(text)
self.view.replace(edit, region, replacement)
def convert(self, source_txt):
return source_txt
class HtmlUnescapeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
from html.parser import HTMLParser
except:
from HTMLParser import HTMLParser
return HTMLParser().unescape(source_txt)
class HtmlEscapeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import cgi
except:
return source_txt
return cgi.escape(source_txt)
class Base64EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import base64
except:
return source_txt
return base64.b64encode(source_txt.encode("utf-8")).decode()
class Base64DecodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import base64
except:
return source_txt
try:
return base64.b64decode(source_txt).decode('utf-8')
except:
import binascii
hexstr = binascii.b2a_hex(base64.b64decode(source_txt))
ret_str = ''
for i in range(0, len(hexstr), 2):
ret_str += "\\x%c%c" % (((hexstr[i]), (hexstr[i + 1])))
return ret_str
class Base32EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import base64
except:
return source_txt
return base64.b32encode(source_txt.encode("utf-8")).decode()
class Base32DecodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import base64
except:
return source_txt
try:
return base64.b32decode(source_txt).decode('utf-8')
except:
import binascii
hexstr = binascii.b2a_hex(base64.b32decode(source_txt))
ret_str = ''
for i in range(0, len(hexstr), 2):
ret_str += "\\x%c%c" % (((hexstr[i]), (hexstr[i + 1])))
return ret_str
class Base16DecodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import base64
except:
return source_txt
try:
return base64.b16decode(source_txt).decode('utf-8')
except:
import binascii
hexstr = binascii.b2a_hex(base64.b16decode(source_txt))
ret_str = ''
for i in range(0, len(hexstr), 2):
ret_str += "\\x%c%c" % (((hexstr[i]), (hexstr[i + 1])))
return ret_str
class Base16EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import base64
except:
return source_txt
return base64.b16encode(source_txt.encode("utf-8")).decode()
class UrlEncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
from urllib.parse import quote
except:
from urllib import quote
return quote(source_txt)
class UrlDecodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
from urllib.parse import unquote
except:
from urllib import unquote
return unquote(source_txt)
class Md5EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import hashlib
except:
return source_txt
return hashlib.md5(source_txt.encode("utf-8")).hexdigest()
class Md516EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import hashlib
except:
return source_txt
return hashlib.md5(source_txt.encode("utf-8")).hexdigest()[8:24]
class Sha1EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import hashlib
except:
return source_txt
return hashlib.sha1(source_txt.encode("utf-8")).hexdigest()
class Sha256EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import hashlib
except:
return source_txt
return hashlib.sha256(source_txt.encode("utf-8")).hexdigest()
class Sha512EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import hashlib
except:
return source_txt
return hashlib.sha512(source_txt.encode("utf-8")).hexdigest()
class Sha224EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import hashlib
except:
return source_txt
return hashlib.sha224(source_txt.encode("utf-8")).hexdigest()
class Sha384EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
import hashlib
except:
return source_txt
return hashlib.sha384(source_txt.encode("utf-8")).hexdigest()
class Html10EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
text = ""
try:
for i in range(len(source_txt)):
text += "&#%s;" % ord(source_txt[i])
return text
except:
sublime.error_message("Can not convert to HTML10 Entities")
class Html16EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
text = ""
try:
for i in range(len(source_txt)):
text += "&#x%x;" % ord(source_txt[i])
return text
except:
sublime.error_message("Can not convert to HTML16 Entities")
class StringFromCharCodeCommand(XssEncodeCommand):
def convert(self, source_txt):
text = "String.fromCharCode("
try:
for i in range(len(source_txt)):
text += "%s," % ord(source_txt[i])
text = text[:-1] + ")"
return text
except:
sublime.error_message("Can not convert to String.fromCharCode")
class MysqlCharCommand(XssEncodeCommand):
def convert(self, source_txt):
text = "CHAR("
try:
for i in range(len(source_txt)):
text += "%s," % str(ord(source_txt[i]))
text = text[:-1] + ")"
return text
except:
sublime.error_message("Can not convert to MysqlChar")
class OracleChrCommand(XssEncodeCommand):
def convert(self, source_txt):
text = ""
try:
for i in range(len(source_txt)):
text += "CHR(%s)||" % str(ord(source_txt[i]))
text = text[:-2]
return text
except:
sublime.error_message("Can not convert to OracleChr")
class OracleUnchrCommand(XssEncodeCommand):
def convert(self, source_txt):
import re
def unescape(txt):
l = re.findall(r'CHR\((\d+?)\)', txt, re.I)
tmp = ""
for x in l:
tmp += chr(int(x))
return tmp
try:
splitchr = "\|"
chrlists = re.findall(
r'CHR\(\d+?\)%s{0,2}' % splitchr,
source_txt, re.M | re.I)
chrstrs = []
temp = ""
for item in range(len(chrlists)):
temp += chrlists[item]
if not re.search(splitchr, chrlists[item]):
chrstrs.append(temp)
temp = ""
chrstrs = sorted(chrstrs, key=lambda x: len(x))
chrstrs.reverse()
for item in chrstrs:
source_txt = source_txt.replace(item, '"%s"' % unescape(item))
return source_txt
except:
sublime.error_message("Can not convert to OracleUnchr")
class PhpChrCommand(XssEncodeCommand):
def convert(self, source_txt):
text = ""
try:
for i in range(len(source_txt)):
text += "CHR(%s)." % str(ord(source_txt[i]))
text = text[:-1]
return text
except:
sublime.error_message("Can not convert to PhpChr")
class PhpUnchrCommand(XssEncodeCommand):
def convert(self, source_txt):
import re
def unescape(txt):
l = re.findall(r'CHR\((\d+?)\)', txt, re.I)
tmp = ""
for x in l:
tmp += chr(int(x))
return tmp
try:
splitchr = "\."
chrlists = re.findall(
r'CHR\(\d+?\)%s{0,1}' % splitchr,
source_txt, re.M | re.I)
chrstrs = []
temp = ""
for item in range(len(chrlists)):
temp += chrlists[item]
if not re.search(splitchr, chrlists[item]):
chrstrs.append(temp)
temp = ""
chrstrs = sorted(chrstrs, key=lambda x: len(x))
chrstrs.reverse()
for item in chrstrs:
source_txt = source_txt.replace(item, '"%s"' % unescape(item))
return source_txt
except:
sublime.error_message("Can not convert to PhpUnhr")
class StringToHexCommand(XssEncodeCommand):
def convert(self, source_txt):
text = ""
try:
import binascii
text += binascii.b2a_hex(source_txt.encode('utf-8')).decode()
return text
except:
sublime.error_message("Can not convert to StringToHex")
class HexToStringCommand(XssEncodeCommand):
def convert(self, source_txt):
text = ""
try:
if source_txt.startswith('0x'):
source_txt = source_txt[2:]
import binascii
text += binascii.a2b_hex(source_txt).decode()
return text
except:
sublime.error_message("Can not convert to HexToString")
class UnicodeDecodeCommand(XssEncodeCommand):
def convert(self, source_txt):
text = ""
try:
text = source_txt.encode().decode('unicode_escape')
return text
except:
sublime.error_message("Can not convert to UnicodeDecode")
class UnicodeEncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
text = ""
try:
text = source_txt.encode('unicode_escape').decode()
return text
except:
sublime.error_message("Can not convert to UnicodeEncode")
class ZipDecodeCommand(XssEncodeCommand):
def convert(self, source_txt):
text = ""
try:
import zlib
import codecs
text = zlib.decompress(codecs.escape_decode(source_txt)[0]).decode()
return text
except:
sublime.error_message("Unzip failed.")
class ZipEncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
text = ""
try:
import zlib
import codecs
text = zlib.compress(source_txt.encode())
return codecs.escape_encode(text)[0].decode()
except:
sublime.error_message("Zip failed.")
class Rot13EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
text = ""
try:
import codecs
text = codecs.encode(source_txt, "rot-13")
return text
except:
sublime.error_message("Rot13 convert failed.")
class Rot13DecodeCommand(Rot13EncodeCommand):
pass
class Js16EncodeCommand(XssEncodeCommand):
def convert(self, source_txt):
text = ""
try:
import binascii
text += binascii.b2a_hex(source_txt.encode('utf-8')).decode()
ret = ""
for i in range(0, len(text), 2):
ret += "\\x%s" % (text[i:i + 2])
return ret
except:
sublime.error_message("Can not convert to Js16")
class Js16DecodeCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
text = HexStripxCommand(self).convert(source_txt)
text = HexToStringCommand(self).convert(text)
return text
except:
sublime.error_message("Js16Decode convert failed.")
class AaEncodeCommand(XssEncodeCommand):
u"""Encode any JavaScript program to Japanese style emoticons (^_^)."""
def aaencode(self, text):
import re
try:
text = unicode(text)
except:
pass
t = ""
b = [
"(c^_^o)",
"(゚Θ゚)",
"((o^_^o) - (゚Θ゚))",
"(o^_^o)",
"(゚ー゚)",
"((゚ー゚) + (゚Θ゚))",
"((o^_^o) +(o^_^o))",
"((゚ー゚) + (o^_^o))",
"((゚ー゚) + (゚ー゚))",
"((゚ー゚) + (゚ー゚) + (゚Θ゚))",
"(゚Д゚) .゚ω゚ノ",
"(゚Д゚) .゚Θ゚ノ",
"(゚Д゚) ['c']",
"(゚Д゚) .゚ー゚ノ",
"(゚Д゚) .゚Д゚ノ",
"(゚Д゚) [゚Θ゚]"
]
r = "゚ω゚ノ= /`m´)ノ ~┻━┻ //*´∇`*/ ['_']; o=(゚ー゚) =_=3; c=(゚Θ゚) =(゚ー゚)-(゚ー゚); "
if re.search('ひだまりスケッチ×(365|356)\s*来週も見てくださいね[!!]', text):
r += "X=_=3; "
r += "\r\n\r\n X / _ / X < \"来週も見てくださいね!\";\r\n\r\n"
r += "(゚Д゚) =(゚Θ゚)= (o^_^o)/ (o^_^o);" +\
"(゚Д゚)={゚Θ゚: '_' ,゚ω゚ノ : ((゚ω゚ノ==3) +'_') [゚Θ゚] " + \
",゚ー゚ノ :(゚ω゚ノ+ '_')[o^_^o -(゚Θ゚)] " +\
",゚Д゚ノ:((゚ー゚==3) +'_')[゚ー゚] }; (゚Д゚) [゚Θ゚] =((゚ω゚ノ==3) +'_') [c^_^o];" +\
"(゚Д゚) ['c'] = ((゚Д゚)+'_') [ (゚ー゚)+(゚ー゚)-(゚Θ゚) ];" +\
"(゚Д゚) ['o'] = ((゚Д゚)+'_') [゚Θ゚];" +\
"(゚o゚)=(゚Д゚) ['c']+(゚Д゚) ['o']+(゚ω゚ノ +'_')[゚Θ゚]+ ((゚ω゚ノ==3) +'_') [゚ー゚] + " +\
"((゚Д゚) +'_') [(゚ー゚)+(゚ー゚)]+ ((゚ー゚==3) +'_') [゚Θ゚]+" +\
"((゚ー゚==3) +'_') [(゚ー゚) - (゚Θ゚)]+(゚Д゚) ['c']+" +\
"((゚Д゚)+'_') [(゚ー゚)+(゚ー゚)]+ (゚Д゚) ['o']+" +\
"((゚ー゚==3) +'_') [゚Θ゚];(゚Д゚) ['_'] =(o^_^o) [゚o゚] [゚o゚];" +\
"(゚ε゚)=((゚ー゚==3) +'_') [゚Θ゚]+ (゚Д゚) .゚Д゚ノ+" +\
"((゚Д゚)+'_') [(゚ー゚) + (゚ー゚)]+((゚ー゚==3) +'_') [o^_^o -゚Θ゚]+" +\
"((゚ー゚==3) +'_') [゚Θ゚]+ (゚ω゚ノ +'_') [゚Θ゚]; " +\
"(゚ー゚)+=(゚Θ゚); (゚Д゚)[゚ε゚]='\\\\'; " +\
"(゚Д゚).゚Θ゚ノ=(゚Д゚+ ゚ー゚)[o^_^o -(゚Θ゚)];" +\
"(o゚ー゚o)=(゚ω゚ノ +'_')[c^_^o];" +\
"(゚Д゚) [゚o゚]='\\\"';" +\
"(゚Д゚) ['_'] ( (゚Д゚) ['_'] (゚ε゚+"
r += "(゚Д゚)[゚o゚]+ "
for i in range(len(text)):
n = ord(text[i])
t = "(゚Д゚)[゚ε゚]+"
if(n <= 127):
nt = "%o" % n
for x in range(len(nt)):
t += b[int(nt[x])] + "+ "
else:
nt = "%04x" % n
t += "(o゚ー゚o)+ "
for x in range(len(nt)):
t += b[int(eval("0x%s" % nt[x]))] + "+ "
r += t
r += "(゚Д゚)[゚o゚]) (゚Θ゚)) ('_');"
return r
def convert(self, source_txt):
try:
text = self.aaencode(source_txt)
return text
except:
sublime.error_message("aaEncode convert failed.")
class AaDecodeCommand(XssEncodeCommand):
u"""Encode any JavaScript program to Japanese style emoticons (^_^)."""
def convert(self, source_txt):
try:
evalPreamble = u"(\uFF9F\u0414\uFF9F) ['_'] ( (\uFF9F\u0414\uFF9F) ['_'] ("
decodePreamble = u"( (\uFF9F\u0414\uFF9F) ['_'] ("
evalPostamble = u") (\uFF9F\u0398\uFF9F)) ('_');"
decodePostamble = u") ());"
text = source_txt.strip()
if text.rfind(evalPostamble) < 0:
sublime.error_message("Given code is not encoded as aaencode.")
return source_txt
if text.rfind(evalPostamble) != len(text) - len(evalPostamble):
sublime.error_message("Given code is not encoded as aaencode.")
return source_txt
text = text.replace(evalPreamble, decodePreamble).replace(
evalPostamble, decodePostamble)
sublime.message_dialog('Decode end. Run the script you will see result.')
return text
except:
sublime.error_message("aaDecode convert failed.")
class HexStripxCommand(XssEncodeCommand):
def convert(self, source_txt):
try:
return source_txt.replace('\\x', '')
except:
sublime.error_message("HexStrip \\X failed.")
class TestEncodeCommand(XssEncodeCommand, sublime_plugin.WindowCommand):
def convert(self, source_txt):
self.source_txt = source_txt
self.convert_txt = source_txt
self.view.window().show_input_panel(
'Input key here:', '', self.on_done, self.on_change, None)
return self.convert_txt
def on_done(self, m):
sublime.status_message(m)
def on_change(self, m):
sublime.status_message("Press ESC to calcel, key: %s" % m)
class TestDecodeCommand(XssEncodeCommand, sublime_plugin.WindowCommand):
def convert(self, source_txt):
self.source_txt = source_txt
self.convert_txt = source_txt
self.view.window().show_input_panel(
'Input key here:', '',
self.on_done, self.on_change, None)
return self.convert_txt
def on_done(self, m):
sublime.status_message(m)
def on_change(self, m):
sublime.status_message("Press ESC to calcel, key: %s" % m)