-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaawt.py
More file actions
40 lines (30 loc) · 816 Bytes
/
aawt.py
File metadata and controls
40 lines (30 loc) · 816 Bytes
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
# from arg_parser import args
from colorama import init, deinit, Fore
# from send_requests import r
# from term_colors import bcolors
# from py_crawler import PyCrawler
from core.command_shell import Shell
import os
import platform
init()
def user_input_checker(user_in, shell_running):
if user_in:
# check dict?
pass
def main():
# Set needed variables
shell_running = True
current_payload = ""
# Clear terminal
if platform.system() == "Linux":
os.system('clear')
else:
os.system('cls')
# Welcome Message
print(f"{Fore.MAGENTA}AAWT (Almost A Web Toolkit)")
print(f"{Fore.YELLOW}This is a simple program written by QSoloX.\n")
# Load all needed files here
shell = Shell()
shell.run()
if __name__ == "__main__":
main()