mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
43 lines
1.6 KiB
Bash
Executable File
43 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# NetAlertX
|
|
# Open Source Network Guard / WIFI & LAN intrusion detector
|
|
#
|
|
# update_vendors.sh - Back module. IEEE Vendors db update
|
|
# ------------------------------------------------------------------------------
|
|
# Puche 2021 / 2022+ jokob jokob@duck.com GNU GPLv3
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Main directories to update:
|
|
# /usr/share/arp-scan
|
|
# ----------------------------------------------------------------------
|
|
|
|
echo "---------------------------------------------------------"
|
|
echo "[INSTALL] Run update_vendors.sh"
|
|
echo "---------------------------------------------------------"
|
|
|
|
DL_DIR=/usr/share/arp-scan
|
|
|
|
# ----------------------------------------------------------------------
|
|
echo Updating... $DL_DIR
|
|
cd $DL_DIR || { echo "could not enter $DL_DIR directory"; exit 1; }
|
|
|
|
# Define the URL of the IEEE OUI file
|
|
IEEE_OUI_URL="http://standards-oui.ieee.org/oui/oui.txt"
|
|
|
|
# Download the file using wget
|
|
wget "$IEEE_OUI_URL" -O ieee-oui_dl.txt
|
|
|
|
# Filter lines containing "(base 16)" and remove the "(base 16)" string
|
|
grep "(base 16)" ieee-oui_dl.txt | sed 's/ *(base 16)//' > ieee-oui_new.txt
|
|
|
|
# Combine ieee-oui_new.txt and ieee-oui.txt, and extract unique MAC start values along with vendor names
|
|
|
|
cat ieee-oui.txt ieee-oui_new.txt >> ieee-oui_all.txt
|
|
sort ieee-oui_all.txt > ieee-oui_all_sort.txt
|
|
awk '{$1=$1; print}' ieee-oui_all_sort.txt | sort -u > ieee-oui_all_filtered.txt
|
|
|
|
|