-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathbanner.py
More file actions
60 lines (55 loc) · 4.66 KB
/
banner.py
File metadata and controls
60 lines (55 loc) · 4.66 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
BLUE, RED, WHITE, YELLOW, MAGENTA, GREEN, END = '\33[94m', '\033[91m', '\33[97m', '\33[93m', '\033[1;35m', '\033[1;32m', '\033[0m'
def banner1():
print("╔─────────────────────────────────────────────────────────╗")
print(f"| {RED}APK Infector{WHITE} - Advanced Android AV Evasion TOOL |")
print(f"| Please do not upload APK to {RED}VirusTotal.com{WHITE} |")
print("┖─────────────────────────────────────────────────────────┙\n")
print(f"{GREEN} . . ")
print(" M. .M ")
print(" MMMMMMMMMMM. ")
print(" .MMM\MMMMMMM/MMM. ")
print(" .MMM.7MMMMMMM.7MMM. ")
print(" .MMMMMMMMMMMMMMMMMMM ")
print(" MMMMMMM.......MMMMMMM ")
print(" MMMMMMMMMMMMMMMMMMMMM ")
print(" MMMM MMMMMMMMMMMMMMMMMMMMM MMMM ")
print(" dMMMM.MMMMMMMMMMMMMMMMMMMMM.MMMMD ")
print(" dMMMM.MMMMMMMMMMMMMMMMMMMMM.MMMMD ")
print(" dMMMM.MMMMMMMMMMMMMMMMMMMMM.MMMMD ")
print(" dMMMM.MMMMMMMMMMMMMMMMMMMMM.MMMMD ")
print(" dMMMM.MMMMMMMMMMMMMMMMMMMMM.MMMMD ")
print(" MMM8 MMMMMMMMMMMMMMMMMMMMM 8MMM ")
print(" MMMMMMMMMMMMMMMMMMMMM ")
print(" MMMMMMMMMMMMMMMMMMMMM ")
print(" MMMMM MMMMM APK Infector v1.0 ")
print(" MMMMM MMMMM Written In Python3 ")
print(" MMMMM MMMMM ")
print(" MMMMM MMMMM ")
print(f" .MMM. .MMM. {WHITE}\n")
print("╔──────────────────────────────────────────────────────────╗")
print(f"| {WHITE}[ {RED}Author{WHITE} ] {YELLOW}Pushpender Singh {WHITE}|")
print(f"| [ {RED}GitHub{WHITE} ] {YELLOW}https://github.com/PushpenderIndia {WHITE}|")
print(f"| [ {RED}YouTube{WHITE} ] {YELLOW}youtube.com/channel/UCRv-wp0CWtW2J33NkTId62w {WHITE}|")
print("┖──────────────────────────────────────────────────────────┙\n")
print("╔──────────────────────────────────────────────────────────╗")
print(f"| {RED}DISCLAIMER : Illegal Use is Stricly Prohibited {WHITE}| ")
print("┖──────────────────────────────────────────────────────────┙\n\n")
def banner2():
print("""
^ """+RED+""" _____ _ """+WHITE+"""
| | """+RED+"""| __ \ | | """+WHITE+"""
@#####@ """+RED+"""| |__) |___ __ _ _ _ ___ ___| |_ """+WHITE+"""
(### ###)-. """+RED+"""| _ // _ \/ _` | | | |/ _ \/ __| __| """+WHITE+"""
.(### ###) \ """+RED+"""| | \ \ __/ (_| | |_| | __/\__ \ |_ """+WHITE+"""
/ (### ###) ) """+RED+"""|_| \_\___|\__, |\__,_|\___||___/\__| """+WHITE+"""
(=- .@#####@|_--" +================"""+RED+"""| |"""+WHITE+"""========================+
/\ \_|l|_/ (\ + DON't Dare to """+RED+"""| |"""+WHITE+""" Upload Infected APK +
(=-\ |l| / + TO """+RED+"""|_|"""+WHITE+""" """+RED+""" VIRUSTOTAL """+WHITE+""" +
\ \.___|l|___/ +===========================================+
/\ |_| /
(=-\._________/\ ["""+RED+"""Author"""+WHITE+"""] """+GREEN+"""Pushpender Singh"""+WHITE+"""
\ / ["""+RED+"""GitHub"""+WHITE+"""] """+GREEN+"""github.com/PushpenderIndia"""+WHITE+"""
\._________/ +===========================================+
# ---- # + Please Contribute To This Project +
# __ # +===========================================+
\########/ """)