-
Notifications
You must be signed in to change notification settings - Fork 50
/
pisavar.py
161 lines (135 loc) · 5.52 KB
/
pisavar.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# coding=utf-8
# Modulles
import sys
import time
import argparse
from termcolor import colored
from argparse import RawTextHelpFormatter
import commands
import netifaces
from scapy.all import *
from termcolor import colored
from scapy.sendrecv import sendp
from time import gmtime, strftime
from scapy.layers.dot11 import Dot11, Dot11Deauth, RadioTap, Dot11Beacon, Dot11Elt
import logging
logging.getLogger("scapy.runtime").setLevel(logging.ERROR)
banner_intro = """
██████╗ ██╗███████╗ █████╗ ██╗ ██╗ █████╗ ██████╗
██╔══██╗██║██╔════╝██╔══██╗██║ ██║██╔══██╗██╔══██╗
██████╔╝██║███████╗███████║██║ ██║███████║██████╔╝
██╔═══╝ ██║╚════██║██╔══██║╚██╗ ██╔╝██╔══██║██╔══██╗
██║ ██║███████║██║ ██║ ╚████╔╝ ██║ ██║██║ ██║
╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝
----------------------------------------------------
"""
DESCRIPTION = """
About project:
The goal of this project is to find out the fake access points opened by the WiFi pineapple device using
the PineAP module and to prevent clients from being affected by initiating a deauthentication attack to
the attacking device.
Pisavar Methods =
1 : Identify and log only PineAP activities
2 : Identify, attack and log PineAP activities
--------------------------------------------------------------------
"""
parser = argparse.ArgumentParser('PiSavar', description=DESCRIPTION, formatter_class=RawTextHelpFormatter)
parser.add_argument('-pm','--pisavar-method', required=True, dest="attack_method", type=str, help="Pisavar attack methods")
parser.add_argument('-i', '--interface',required=True, help="Interface (Monitor Mode)", type=str)
args = parser.parse_args()
def logging(log):
with open("/var/log/pisavar.log", "a") as f:
f.write(str(log)+"\n")
f.flush()
f.close()
def sniff_channel_hop(iface):
for i in range(1, 14):
os.system("iwconfig " + iface + " channel " + str(i))
sniff(iface=iface, count=4, prn=air_scan)
def air_scan(pkt):
"""
Scan all network with channel hopping
Collected all ssid and mac address information
:param pkt: result of sniff function
"""
if pkt.haslayer(Dot11Beacon):
ssid, bssid = pkt.info, pkt.addr2
info = "{}=*={}".format(bssid, ssid)
if info not in info_list:
info_list.append(info)
def pp_analysis(info_list, pp, pisavar_method):
"""
Analysis air_scan result for pineAP Suite detection
"""
for i in info_list:
bssid, ssid= i.split("=*=")
if bssid not in pp.keys():
pp[bssid] = []
pp[bssid].append(ssid)
elif bssid in pp.keys() and ssid not in pp[bssid]:
pp[bssid].append(ssid)
"""
Detects networks opened by PineAP Suite.
"""
for v in pp.keys():
if len(pp[v]) >= 2 and v not in blacklist:
print colored("\033[1m[*] PineAP module activity was detected.", 'magenta', attrs=['reverse', 'blink'])
print "\033[1m[*] MAC Address : ", v
print "\033[1m[*] FakeAP count: ", len(pp[v])
log_time = time.strftime("%c")
blacklist.append(v)
if pisavar_method == "2":
pp_deauth(blacklist)
log = log_time, "||", v, " - ", len(pp[v]), " - Deauth Attack"
logging(log)
elif pisavar_method == "1":
log = log_time, "||", v, " - ", len(pp[v])
logging(log)
time.sleep(3)
return blacklist
def find_channel(clist, v):
global channel
for i in range(0, len(clist)):
if clist[i].haslayer(Dot11Beacon) and clist[i].addr2 == v:
channel = ord(clist[i][Dot11Elt:3].info)
return channel
def pp_deauth(blacklist):
"""
Starts deauthentication attack for PineAP Suite.
"""
attack_start = "[*] Attack has started for " + str(blacklist)
print colored(attack_start, 'red', attrs=['reverse', 'blink'])
time.sleep(2)
channel = 1
for target in blacklist:
clist = sniff(iface=iface, count=50)
channel = find_channel(clist, target)
deauth = RadioTap() / Dot11(addr1="ff:ff:ff:ff:ff:ff", addr2=target.lower(), addr3=target.lower()) / Dot11Deauth()
sendp(deauth, iface=iface, count=120, inter=.2, verbose=False)
time.sleep(1)
print colored("[*] Attack has completed..", 'green', attrs=['reverse', 'blink'])
time.sleep(2)
if __name__ == '__main__':
path = "/var/log/pisavar/pisavar.log"
iface = args.interface
mode = "Monitor"
pisavar_method = args.attack_method
os.system("reset")
now = time.strftime("%c")
print banner_intro
print "Information about test:"
print "----------"*5
print "[*] Start time: ", now
print "[*] Detects PineAP module activity and starts deauthentication attack \n (for fake access points - WiFi Pineapple Activities Detection) "
print "------------"*7
while True:
time.sleep(10)
channel = 0
blacklist = []
info_list = []
pp = {}
sniff_channel_hop(iface)
blacklist = pp_analysis(info_list, pp, pisavar_method)
time.sleep(2)
if len(blacklist)!=0:
print "--------"*5