-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObfuscator.py
100 lines (85 loc) · 4.15 KB
/
Obfuscator.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
import os
import random
import zlib
import lzma
from marshal import dumps
os.system('cls' if os.name == 'nt' else 'clear')
def redblue(text):
os.system("")
faded = ""
red = 255
blue = 0
for line in text.splitlines():
faded += (f"\033[38;2;{red};0;{blue}m{line}\033[0m\n")
if blue < 255:
blue += 15
if blue > 255:
blue = 255
if red > 0:
red -= 15
if red < 0:
red = 0
return faded
print(redblue('''
▒█████ ▄▄▄▄ █████▒█ ██ ██████ ▄████▄ ▄▄▄ ▄▄▄█████▓ ▒█████ ██▀███
▒██▒ ██▒▓█████▄ ▓██ ▒ ██ ▓██▒▒██ ▒ ▒██▀ ▀█ ▒████▄ ▓ ██▒ ▓▒▒██▒ ██▒▓██ ▒ ██▒
▒██░ ██▒▒██▒ ▄██▒████ ░▓██ ▒██░░ ▓██▄ ▒▓█ ▄ ▒██ ▀█▄ ▒ ▓██░ ▒░▒██░ ██▒▓██ ░▄█ ▒
▒██ ██░▒██░█▀ ░▓█▒ ░▓▓█ ░██░ ▒ ██▒▒▓▓▄ ▄██▒░██▄▄▄▄██░ ▓██▓ ░ ▒██ ██░▒██▀▀█▄
░ ████▓▒░░▓█ ▀█▓░▒█░ ▒▒█████▓ ▒██████▒▒▒ ▓███▀ ░ ▓█ ▓██▒ ▒██▒ ░ ░ ████▓▒░░██▓ ▒██▒
░ ▒░▒░▒░ ░▒▓███▀▒ ▒ ░ ░▒▓▒ ▒ ▒ ▒ ▒▓▒ ▒ ░░ ░▒ ▒ ░ ▒▒ ▓▒█░ ▒ ░░ ░ ▒░▒░▒░ ░ ▒▓ ░▒▓░
░ ▒ ▒░ ▒░▒ ░ ░ ░░▒░ ░ ░ ░ ░▒ ░ ░ ░ ▒ ▒ ▒▒ ░ ░ ░ ▒ ▒░ ░▒ ░ ▒░
░ ░ ░ ▒ ░ ░ ░ ░ ░░░ ░ ░ ░ ░ ░ ░ ░ ▒ ░ ░ ░ ░ ▒ ░░ ░
░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░
░ ░
By https://github.com/blax-dev
'''))
junk = "__byblaxt__" * 15
file = input('Metez le nom de votre fichier dans le dossiers : ')
chars = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
def genvar():
var = ''
for i in range(10):
var += random.choice(chars)
return var
def compress(text):
ok = zlib.compress(text.encode())
ok = lzma.compress(ok)
return ok
def encrypt1(text):
src = compile(text, 'coduter', 'exec')
ma = dumps(src)
s = f'{junk}="{junk}";{junk}="{junk}";{junk}="{junk}";exec(loads({ma}));{junk}="{junk}";{junk}="{junk}"'
compresse = compress(s)
oke = f"import zlib,lzma\nexec(zlib.decompress(lzma.decompress({compresse})))"
return oke
def encrypt2(text):
sta = genvar()
code = text
s = compile(code, 'coduter', 'exec')
maa = dumps(s)
stub2 = f'from marshal import loads;exec(loads({maa}));'
fin = f'{junk}="{junk}";{junk}="{junk}";{stub2}{junk}="{junk}";{junk}="{junk}";'
return fin
if not os.path.isfile(file):
print('File not found')
exit()
print('\n')
print('[+] encrypting ...')
# Modifier cette ligne pour utiliser l'encodage utf-8
with open(file, 'r', encoding='utf-8') as f:
code = f.read()
code = encrypt1(code)
code = encrypt2(code)
print('[+] done')
print('\n')
name = file.split('/')[-1]
name = name.split('.')[0]
with open(f'{name}-obf.py', 'w', encoding='utf-8') as f:
f.write(code)
os.system('cls' if os.name == 'nt' else 'clear')
print(f'Votre fichier est obfusquer et enregistré sous le nom de {name}-obf.py')
print('\n')
print('Merci d’utiliser ce tools')
import time
time.sleep(5)
exit()