-
Notifications
You must be signed in to change notification settings - Fork 1
/
banner.py
81 lines (64 loc) · 4.16 KB
/
banner.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
import os
import platform
from setup import colors
from setup.colors import r,g,y,c , w
from colorama import Fore , Back
GB = Back.GREEN
YB = Back.YELLOW
WB = Back.RED
logo = f"""
...
;::::;
;::::; :;
;:::::' :;
;:::::; ;.
,:::::' ; OOO
::::::; ; OOOOO
;:::::; ; OOOOOOOO
,;::::::; ;' / OOOOOOO
;:::::::::`. ,,,;. / / DOOOOOO
.';:::::::::::::::::;, / / DOOOO
,::::::;::::::;;;;::::;, / / DOOO
▄█ ▄███████▄ ;`::::::`'::::::;;;::::: ,#/ / DOOO
███ ███ ███ :`:::::::`;::::::;;::: ;::# / DOOO
███▌ ███ ███ ::`:::::::`;:::::::: ;::::# / DOO
███▌ ███ ███ `:`:::::::`;:::::: ;::::::#/ DOO
███▌ ▀█████████▀ :::`:::::::`;; ;:::::::::## OO
███ ███ ::::`:::::::`;::::::::;:::# OO
███ ███ `:::::`::::::::::::;'`:;::# O
█▀ ▄████▀ `:::::`::::::::;' / / `:#
::::::`:::::;' / / `#
██████╗ ███████╗ █████╗ ██████╗ ███████╗██████╗
██╔══██╗██╔════╝██╔══██╗██╔══██╗██╔════╝██╔══██╗
██████╔╝█████╗ ███████║██████╔╝█████╗ ██████╔╝
██╔══██╗██╔══╝ ██╔══██║██╔═══╝ ██╔══╝ ██╔══██╗ {Back.RESET}
██║ ██║███████╗██║ ██║██║ ███████╗██║ ██║
╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚══════╝╚═╝ ╚═╝
{y}[{w}-{y}] {c}Author: {w}CPScript {r}|{g}
{w}<{y}/{w}> {GB}{w}Github : CPScript {Back.RESET}
{w}<{y}/{w}> {GB}{w}About : IP Address info Grabber {Back.RESET}
{w}<{y}/{w}> {w}Made useing Python {Back.RESET}
▄▄▀█▄ ▄ ▄
▀▀▀██ ███ ███
▄██▀ █████ █████
███▀▄███ ███ ███ ███ ▄
▀█████▀ ▀███▀ ▀██▀
"""
c = colors
try:
from colorama import Fore, Style
except ModuleNotFoundError:
os.system("pip install colorama")
def banner():
print(c.ran + logo)
def banner2():
print(c.ran,"\n" + "|"+ Style.BRIGHT + Fore.LIGHTCYAN_EX, "- " * 4, " [+] About CPScript ", "- " * 4 + c.ran + "|")
print(c.ran, "\n" + "|"+ Style.BRIGHT + Fore.LIGHTYELLOW_EX, "- " * 4, " [+] CPS is a coder that works on Networking, Malware, and Hacks ", "- " * 4+c.ran + "|")
print(c.ran , "\n"+ "|"+ Style.BRIGHT + Fore.LIGHTRED_EX, "- " * 4, "[+] You can find more here--> https://github.com/CPScript/", "- " * 3+c.ran + "|")
print(c.ran + "\n"+ "|" + "*" * 60+c.ran + "|")
def clear():
s = platform.platform()
if "Windows" in s:
os.system("cls")
else:
os.system("cls") if "Windows" in platform.platform() else os.system("clear")