-
Notifications
You must be signed in to change notification settings - Fork 3
/
mon.py
59 lines (43 loc) · 2.36 KB
/
mon.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
# rpimon
# Author - D3adpool2K
# github - https://github.com/Deadpool2000
import os
try:
print("""
##############################################################################
Monitor mode for Raspberry Pi 3 B/B+,Zero W On Raspbian OS
##############################################################################\n
""")
print("Warning! Please take a backup of your system before installation.\nYour system may corrupted while installation! So be careful!")
# Upadating
print("Installing Dependencies.......................\n")
os.system("sudo apt-get update")
os.system("sudo apt-get install aircrack-ng tar wget -y")
# Installing Re4son kernel in Raspbian
# Downloading tar
PATH=os.path.isfile("/usr/local/src/re4son-kernel_current.tar.xz")
print("\nDownloading tar....................\n")
if PATH==True:
print("File already exist! Skipping download..................\n")
else:
os.system("sudo wget -O /usr/local/src/re4son-kernel_current.tar.xz https://re4son-kernel.com/download/re4son-kernel-current/")
# Extracting
print("\nExtracting................................\n")
os.system("tar -xJf /usr/local/src/re4son-kernel_current.tar.xz -C /usr/local/src")
print("\nExtraction suucessfull!\n")
print("""
######################################################################################
Now take a cup of tea/coffee until complete installation :)
######################################################################################\n""")
# Installation
os.system("cd /usr/local/src/re4son-kernel_4.14* && chmod +x install.sh && ./install.sh")
os.system("sudo rm /usr/local/src/re4son-kernel_current.tar.xz")
print("""
#######################################################################################
Succeed! Now start monitor mode by typing 'sudo mon0 up'
########################################################################################
Script By:Deadpool007
########################################################################################
""")
except KeyboardInterrupt:
print("Interrupted! Have a nice day :)")