-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlsfterm
39 lines (27 loc) · 1.02 KB
/
lsfterm
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
#!/usr/bin/env python3
from interpreter import run
red = "\033[31m"
blue = "\033[34m"
bold = "\033[1m"
reset = "\033[0m"
green = "\033[32m"
yellow = "\033[33m"
print(f"""
{red} __ _ __ _ __
/ / ____ ____ _(_)________ / /___ (_) /_
/ / / __ \/ __ `/ / ___/ __ \/ / __ \/ / __/
/ /___/ /_/ / /_/ / (__ ) /_/ / / /_/ / / /_
/_____/\____/\__, /_/____/ .___/_/\____/_/\__/
/____/ /_/
{reset}
{blue} ______
| ___| __ __ _ _ __ ___ _____ _____ _ __| | __
| |_ | '__/ _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ /
| _|| | | (_| | | | | | | __/\ V V / (_) | | | <
|_| |_| \__,_|_| |_| |_|\___| \_/\_/ \___/|_| |_|\_|
{reset}
""")
while True:
print(f"┌─[{green}Logisploit{reset}]──[{blue}~{reset}]─[{blue}main{reset}]")
lsf = input(f"└─────► ")
run(lsf)