Created
July 14, 2023 16:07
-
-
Save directentis1/2540b19361acf3c8e0fcf4961b45daef to your computer and use it in GitHub Desktop.
Download and configure network miner for Linux x86_64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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