Skip to content

Instantly share code, notes, and snippets.

@directentis1
Created July 14, 2023 16:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save directentis1/2540b19361acf3c8e0fcf4961b45daef to your computer and use it in GitHub Desktop.
Save directentis1/2540b19361acf3c8e0fcf4961b45daef to your computer and use it in GitHub Desktop.
Download and configure network miner for Linux x86_64
#!/bin/bash
# Install necessary packages
sudo apt install mono-devel tcpdump netsniff-ng netcat socat -yqq
# Install NetworkMiner
wget https://www.netresec.com/?download=NetworkMiner -O /tmp/nm.zip
sudo unzip /tmp/nm.zip -d /home/ubuntu/apps
sudo rm -r /tmp/nm.zip
cd /home/ubuntu/apps/NetworkMiner*
sudo chmod +x NetworkMiner.exe
sudo chmod -R go+w AssembledFiles/
sudo chmod -R go+w Captures/
# Run it!
mono NetworkMiner.exe --noupdatecheck
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment