-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
105 lines (59 loc) · 2.24 KB
/
main.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import smtplib
import time
import curses
from colorama import Fore, Style
import subprocess
import multiprocessing
from multiprocessing.pool import ThreadPool
import threading
from threading import Thread
import sib_api_v3_sdk as sib
from hwid_logger import HWID
from email.mime.text import MIMEText
from tools.functions import clear, system
from modules.outlook import send_outlook_emails
from modules.gmail import send_gmail_emails
import os
def ascii():
print( Fore.LIGHTRED_EX + f"""\
_ _ ____ _ __
/\ | (_) | _ \ | | /_ |
/ \ | |_ __ _ ___ | |_) | ___ _ __ ___ | |__ ___ _ __ __ _| |
/ /\ \ | | |/ _` / __| | _ < / _ \| '_ ` _ \| '_ \ / _ \ '__| \ \ / / |
/ ____ \| | | (_| \__ \ | |_) | (_) | | | | | | |_) | __/ | \ V /| |
/_/ \_\_|_|\__,_|___/ |____/ \___/|_| |_| |_|_.__/ \___|_| \_/ |_|
{Fore.RED + " Coded By Alias -- github.com/aliasnoclip" + Style.RESET_ALL}
""")
def display_menu():
print( Fore.LIGHTRED_EX + """
Alias Bomber v1 | Home | alias#9999
[1] Gmail
[2] Outlook
[3] Api Support In V2 - Feel Free To Fork :)
[4] Clear
[5] Exit Program
""" + Style.RESET_ALL)
def handle_choice(choice):
if choice == "1":
send_gmail_emails()
pass
elif choice == "2":
send_outlook_emails()
pass
elif choice == "3":
clear()
pass
elif choice == "4":
clear()
elif choice == "5":
print("Exiting...")
exit()
else:
print("Invalid choice. Please try again.")
time.sleep(2)
clear()
while True:
ascii()
display_menu()
choice = input("Enter your choice: ")
handle_choice(choice)