-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpcap-analyzer.py
More file actions
156 lines (119 loc) · 4.64 KB
/
pcap-analyzer.py
File metadata and controls
156 lines (119 loc) · 4.64 KB
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
import pyshark
import collections
import matplotlib.pyplot as plt
import numpy as np
import requests
import pandas as pd
import openpyxl
from bs4 import BeautifulSoup
import platform
import sys
from openpyxl import load_workbook
from collections import OrderedDict
import os
from pathlib import Path
import argparse
sys.tracebacklimit = 0
MAC_URL = "http://standards-oui.ieee.org/oui.txt" # url para verificar las MAC address atravez del OUI
def analyzer(opt):
download()
loadPath = str( str(Path(__file__).parent) + opt.file_name)
archivos = os.listdir(str(loadPath))
channels = {}
valid_mac_count = 0
mac_count = 0
RSS_graph = pd.ExcelWriter('RSS_graphs.xlsx',engine = 'openpyxl')
for pcap in archivos:
RSS_dist = {}
captura = pyshark.FileCapture(loadPath+'/'+pcap)
valid_SA = []
n_packet=0
srg_RSS = -100000000000000000
weak_RSS = 0
RSS_sum = 0
RSS_avg = 0
for packet in captura: #packet.wlan.sa == Source MAC address
RSS = int (packet.wlan_radio.signal_dbm) # RSS: fuerza de la señal, en dbm
if(RSS not in RSS_dist):
RSS_dist[RSS] = 1
else:
RSS_dist[RSS] += 1
mac_count += 1
n_packet += 1
if(RSS > srg_RSS):
srg_RSS = RSS
if(RSS < weak_RSS):
weak_RSS = RSS
RSS_sum += RSS
if(compare_macs(packet.wlan.sa)):
valid_SA.append(packet.wlan.sa)
valid_mac_count += 1
RSS_avg = RSS_sum/n_packet
print(pcap)
num_devices = CountFrequency(valid_SA)
print("Total number of packets: ", n_packet)
print("Valid MAC :",len(valid_SA)/n_packet * 100 , "%")
print("RSS from ",weak_RSS, " to ", srg_RSS, "with an avg of", RSS_avg , " dbm")
channels[pcap] = (n_packet, len(valid_SA), num_devices)
RSS_dist = OrderedDict(sorted(RSS_dist.items()))
df = pd.DataFrame(RSS_dist.values(), index=RSS_dist.keys() ,columns=['Frecuencia'])
print(df)
df.to_excel(RSS_graph, sheet_name=pcap)
RSS_graph.close()
df = pd.DataFrame(channels.values(), index=channels.keys() ,columns=['# Total Packets', '# Valid Packets', '# Devices (SA)'])
print(df)
print("Total Valid MAC :",valid_mac_count/mac_count * 100 , "%")
df.to_excel('channels_graph1.xlsx', sheet_name='new_sheet_name')
def CountFrequency(my_list):
# Creating an empty dictionary
freq = {}
for item in my_list:
if (item in freq):
freq[item] += 1
else:
freq[item] = 1
print("Number of devices: ", len(freq))
return len(freq)
#for key, value in freq.items():
# print ("% s : % d"%(key, value))
def download(): # actualiza la lista de OUI desde la IEEE
if platform.system() == "Windows":
MAC_ADDRESS_PATH = os.path.dirname(os.path.realpath(__file__)) + "\MAC_ADDRESS.txt"
else:
MAC_ADDRESS_PATH = os.path.dirname(os.path.realpath(__file__)) + "/MAC_ADDRESS.txt"
# Remove old list
if os.path.exists(MAC_ADDRESS_PATH):
os.remove(MAC_ADDRESS_PATH)
addresses = requests.get(url=MAC_URL)
soup = BeautifulSoup(addresses.text, "lxml").text
with open(MAC_ADDRESS_PATH, "a", encoding="utf8") as MAC_ADDRESS:
for line in soup.split("\n"):
if "(base 16)" in line:
MAC_ADDRESS.write(line.replace("(base 16)", ""))
def compare_macs(mac_address): # permite verificar si es que la MAC address es valida comparando las OUI
mac_address = mac_address.replace(":", "").replace("-", "").upper()
if platform.system() == "Windows":
MAC_ADDRESS_PATH = os.path.dirname(os.path.realpath(__file__)) + "\MAC_ADDRESS.txt"
else:
MAC_ADDRESS_PATH = os.path.dirname(os.path.realpath(__file__)) + "/MAC_ADDRESS.txt"
with open(MAC_ADDRESS_PATH, "r", encoding="utf8") as m:
# Compare entered MAC address with addresses in text file
MAC_ADDRESS_F = m.read()
for address in MAC_ADDRESS_F.split("\n"):
if address[0:6] == mac_address[0:6]:
return(True)
#print(address[7:].strip())
#break
else:
return(False)
#print("[!] MAC address not found")
def parse_opt():
parser = argparse.ArgumentParser()
parser.add_argument('--file_name' ,help='file where the ch pcap files are located')
opt = parser.parse_args()
return opt
def main(opt):
analyzer(opt)
if __name__ == '__main__':
opt = parse_opt()
main(opt)