-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFMC.py
45 lines (35 loc) · 1.1 KB
/
FMC.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
import rich
from rich.console import Console
from rich.progress import track
from function import *
from function import *
console = Console()
print("\n")
Loading_Bar()
console.print("""[blue] ______ __ __ ______
/\ ___\ /\ "-./ \ /\ ___\
\ \ __\ \ \ \-./\ \ \ \ \____
\ \_\ \ \_\ \ \_\ \ \_____\
\/_/ \/_/ \/_/ \/_____/
""")
console.print("[red] [ THE POWER OF MACCHANGER IN A SCRIPT ]\n")
console.print("[red][1] Install Macchanger")
console.print("[red][2] Change The Mac Address Manually")
console.print("[red][3] Use A Mac Address Vendor")
console.print("[red][4] Show The Current Mac Address")
console.print("[red][5] Back To The Original Mac Address")
console.print("[red][6] Set Full Random Mac Address")
print("\n")
options = int(input("Enter a options: "))
if(options == 1):
Install_Macchanger()
elif(options == 2):
Change_Mac_Manually()
elif(options == 3):
Change_New_Mac_Address()
elif(options == 4):
Show_Current_Perma_Mac()
elif(options == 5):
Reset_Original_Mac_Address()
elif(options == 6):
Full_Random_Mac_Address()