/usr/sbin/airodump-ng-oui-update is in aircrack-ng 1:1.2-0~rc4-4.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/sh
set -e
if which update-oui 2>/dev/null; then
update-oui
elif which update-ieee-data 2>/dev/null; then
update-ieee-data
else
echo "ERROR: please install package ieee-data: #apt install ieee-data" >&2
fi
|