-
Notifications
You must be signed in to change notification settings - Fork 8
/
amc.sh
126 lines (110 loc) · 5.44 KB
/
amc.sh
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/bin/bash
while true; do
clear
sudo clear
echo '######################################################################'
echo '# _/_/ _/ _/ _/_/_/ #'
echo '# _/ _/ _/_/ _/_/ _/ #'
echo '# _/_/_/_/ _/ _/ _/ _/ #'
echo '# _/ _/ _/ _/ _/ #'
echo '# _/ _/ _/ _/ _/_/_/ #'
echo '# #'
echo '# Coded by Dipen Chavan - @hexdee606 #'
echo '# Tested by Shreyas Kulkarni - @paradox44 #'
echo '# Tested by Aniket Kumbhar - @itachi-91 #'
echo '# Tested by Ankita Hendre - @athena-077 #'
echo '######################################################################'
echo '# Automatic Media Access Control [MAC] Address Spoofig Tool #'
echo '######################################################################'
echo '# Choose # For #'
echo '######################################################################'
echo '# 1 # Automatic Media Access Control [MAC] Address Spoofing #'
echo '# 2 # Available Network Interfaces #'
echo '# 3 # About Alchemists Community #'
echo '# 4 # Join Alchemists Community #'
echo '# 5 # CC0 1.0 Universal License #'
echo '# 6 # Version #'
echo '# 0 # Exit #'
echo '######################################################################'
read input_option
case $input_option in
#case 0
"0") exit 1
;;
#case 1
"1") clear
sudo clear
echo '######################################################################'
echo '# _/_/ _/ _/ _/_/_/ #'
echo '# _/ _/ _/_/ _/_/ _/ #'
echo '# _/_/_/_/ _/ _/ _/ _/ #'
echo '# _/ _/ _/ _/ _/ #'
echo '# _/ _/ _/ _/ _/_/_/ #'
echo '# #'
echo '# Coded by Dipen Chavan - @hexdee606 #'
echo '# Tested by Shreyas Kulkarni - @paradox44 #'
echo '# Tested by Aniket Kumbhar - @itachi-91 #'
echo '# Tested by Ankita Hendre - @athena-077 #'
echo '######################################################################'
echo '# Automatic Media Access Control [MAC] Address Spoofig Tool #'
echo '######################################################################'
echo '# Please enter network interface name [Ex. eth0] : #'
read ntwrk_inter
echo '######################################################################'
echo '# Please enter interval time [between 30 to 60 ] : #'
read intrvl_tm
echo '######################################################################'
sudo python3 amc.py -i $ntwrk_inter -t $intrvl_tm
echo "Press Enter to continue."
read wt
;;
#case 2
"2") sudo python3 amc.py -n True
echo "Press Enter to continue."
read wt
;;
#case 3
"3") sudo python3 amc.py -a True
echo "Press Enter to continue."
read wt
;;
#case 4
"4") sudo python3 amc.py -j True
echo "Press Enter to continue."
read wt
;;
#case 5
"5") sudo python3 amc.py -l True
echo "Press Enter to continue."
read wt
;;
#case 6
"6") sudo python3 amc.py -v True
echo "Press Enter to continue."
read wt
;;
*)
clear
sudo clear
echo '######################################################################'
echo '# _/_/ _/ _/ _/_/_/ #'
echo '# _/ _/ _/_/ _/_/ _/ #'
echo '# _/_/_/_/ _/ _/ _/ _/ #'
echo '# _/ _/ _/ _/ _/ #'
echo '# _/ _/ _/ _/ _/_/_/ #'
echo '# #'
echo '# Coded by Dipen Chavan - @hexdee606 #'
echo '# Tested by Shreyas Kulkarni - @paradox44 #'
echo '# Tested by Aniket Kumbhar - @itachi-91 #'
echo '# Tested by Ankita Hendre - @athena-077 #'
echo '######################################################################'
echo '# Automatic Media Access Control [MAC] Address Spoofig Tool #'
echo '######################################################################'
echo '# ERROR AMCSH0000x000001 : Please select valid option. #'
echo '######################################################################'
echo "Press Enter to continue."
read wt
;;
esac
done
exit 1