mirror of
https://github.com/bigbeartechworld/big-bear-scripts.git
synced 2026-03-31 06:33:56 -04:00
* ✨ feat: Add ARP interface finder script and README This commit adds a new script, `run.sh`, that finds all usable network interfaces for `arp-scan` and exports them to a configuration file. The script detects interfaces that are "UP" (usable for scanning), skips virtual container interfaces (veth), and handles special cases like `eth0@if46` that might be in different network namespaces. Additionally, a README file is added to provide instructions on how to run the command. * ✨ feat(arp-iface-finder): Use bash shebang for portability Modify the shebang line in the `run.sh` script to use `#!/usr/bin/env bash` instead of `#!/bin/bash`. This ensures the script will run on systems where the bash binary is not located at `/bin/bash`, improving portability.
Run command
bash -c "$(wget -qLO - https://raw.githubusercontent.com/bigbeartechworld/big-bear-scripts/master/arp-iface-finder/run.sh)"
Description
This script will find all usable network interfaces for arp-scan.