-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule-setup.py
More file actions
39 lines (34 loc) · 1.41 KB
/
module-setup.py
File metadata and controls
39 lines (34 loc) · 1.41 KB
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
import os, sys, time
R = "\033[1;31m" # RED
B = "\033[1;34m" # BLUE
C = "\033[1;36m" # CYAN
G = "\033[1;32m" # GREEN
Y = "\033[1;93m" # YELLOW
N = "\033[0m" # NORMAL
B = "\033[1m" # BOLD
P = "\033[35m" # PURPLE
U = "\033[4m" # UNDERLINE
O = "\033[36m" # ORANGE
print '''
{G} .;' `;, {G}[+]{N} Laughing At Your Security Since 2011
{G} .;' ,;' `;, `;, {Y}_ _ ____ _ _ _{G}
{G} .;' ,;' ,;' {Y}_{G} `;, `;, `;, {Y}| | _ _| |____/ ___| _ __ | | ___ (_) |_{G}
{G} :: :: : {Y}(_){G} : :: :: {Y}| | | | | | |_ /\___ \| '_ \| |/ _ \| | __|{G}
{G} ':. ':. ':. {Y}/_\{G} ,;' ,:' ,:' {Y}| |__| |_| | |/ / ___) | |_) | | (_) | | |_{G}
{G} ':. ':. {Y}/___\{G} ,:' ,:' {Y}|_____\__,_|_/___||____/| .__/|_|\___/|_|\__|{G}
{G} ':. {Y}/_____\{G} ,:' {Y}|_|
{Y}/ \{N}
{G}[+]{Y} LulzSploit Setup{N}
{G}[+]{Y} LulzSploit v.3.5{N}
'''.format(Y = Y, G = G, N = N)
print "=" * 47
print ("\n\033[1;32m[+] \033[0mmodule-setup.py is running...\n")
os.system("unzip tools.zip")
print "=" * 47
os.system("pip2 install -r lulz-requirements.txt")
os.system("chmod +x lulzsploit.py")
os.system("rm -rf tools.zip")
os.system("rm -rf lulz-requirements.txt")
print "=" * 47
print ("\n\033[1;32m[+] \033[0mmodule-setup.py is done!\n")
sys.exit()