First Commit

This commit is contained in:
Guy Boisvert 2025-08-12 23:01:13 -04:00
commit bd67283438
142 changed files with 5061 additions and 0 deletions

9
GenMac Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
OUI_PREFIX="00:50:56"
echo -e "\nOUI Prefix: $OUI_PREFIX"
LAST_OCTETS=$(openssl rand -hex 3 | sed 's/\(..\)/\1:/g; s/.$//')
echo -e "Generated MAC: ${OUI_PREFIX}:${LAST_OCTETS}"