Skip to content

Instantly share code, notes, and snippets.

@bennylangston
Forked from Blackhawk95/networktools.txt
Created June 5, 2021 06:43
Show Gist options
  • Save bennylangston/638254ba9bcacf2ef4e74753dfed566b to your computer and use it in GitHub Desktop.
Save bennylangston/638254ba9bcacf2ef4e74753dfed566b to your computer and use it in GitHub Desktop.
How to install every network tool #not_perfect
To run almost all tools, run using their name (mostly using sudo [not recommended] )
eg: to run iptraf :- sudo iptraf
[for more info on ALL tools: manpages will help, [ for eg: " man iptraf " to get more info on iptraf WITHOUT internet]
1. Iptraf
sudo apt-get install iptraf
Learn More:
https://www.tecmint.com/real-time-interactive-ip-lan-monitoring-with-iptraf-tool/
...................................................................................
2. Ettercap
Installation
EASY:
sudo apt-get install ettercap-graphical
HARD:
wget https://github.com/Ettercap/ettercap/archive/v0.8.2.tar.gz
tar -xvf v0.8.2.tar.gz
cd ettercap-0.8.2/
mkdir build
cd build
cmake ..
sudo make install
To run:
sudo ettercap -G
For more:
https://arunsag.wordpress.com/2009/04/03/flirting-with-ettercap-1/
.....................................................................................
3.
Capsa Free
It is a windows only software, which u can download with free license by providing information here
https://www.colasoft.com/download/products/capsa_free.php
.....................................................................................
4.
Fiddler
It is a windows software, which u can download with free license by providing information here,
linux version is in beta and requires mono framework (as the time of writing).
https://www.telerik.com/download/fiddler
for linux
wget http://telerik-fiddler.s3.amazonaws.com/fiddler/fiddler-linux.zip
[unzip the folder and open it]
[for mono]
........
sudo apt-get install libmono-system-windows-forms4.0-cil
sudo apt-get install libmono-system-web4.0-cil
sudo apt-get install libmono-system-net4.0-cil
sudo apt-get install libmono-system-runtime-serialization4.0-cil
sudo apt-get install libmono-system-xml-linq4.0-cil
[to run]
sudo mono Fiddler.exe
.....................................................................................
5.
Cacti
To install
sudo apt-get install cacti
For more :
https://docs.cacti.net/manual:100
It is a big tool
.....................................................................................
6.
Kismet
To install
sudo apt-get install kismet
For more :
https://www.linux.com/news/introduction-kismet-packet-sniffer
....................................................................................
7.
Knsiffer
Not* possible [unless u have kde DM, *possible but hard]
changed to iftop
To install
sudo apt-get install iftop
For more:
https://www.unixmen.com/iftop-a-network-bandwidth-monitoring-tool-for-linux/
...................................................................................
8.
Ipgrab
To install :
sudo apt-get install ipgrab
For more: [manual]
http://download.sourceforge.net/ipgrab/ipgrab-0.9.8.pdf
.......................................................................................
9.
Dsniff
To install
sudo apt-get install dsniff
More info:
https://tournasdimitrios1.wordpress.com/2011/03/04/password-sniffing-with-dsniff-on-the-local-network/
......................................................................................
10.
EtherApe
To install
sudo apt-get install etherape
More infor:
https://www.techrepublic.com/article/spy-on-your-network-with-etherape/
......................................................................................
11.
Ntop
To install
sudo apt-get install ntop
More info:
https://www.techrepublic.com/blog/linux-and-open-source/monitor-network-traffic-with-ntop/
.........................................................................................
12.
Ngrep
To install
sudo apt-get install ngrep
More info:
https://coderwall.com/p/zqulaw/introduction-to-ngrep
........................................................................................
13.
Omnipeek
windows tool - https://www.savvius.com/free-30-day-software-trials/
.........................................................................................
14.
Networkminer
To install - for all
https://www.netresec.com/?page=Blog&month=2014-02&post=HowTo-install-NetworkMiner-in-Ubuntu-Fedora-and-Arch-Linux
for ubuntu:
[execute one by one]
sudo apt-get install libmono-system-windows-forms4.0-cil
sudo apt-get install libmono-system-web4.0-cil
sudo apt-get install libmono-system-net4.0-cil
sudo apt-get install libmono-system-runtime-serialization4.0-cil
sudo apt-get install libmono-system-xml-linq4.0-cil
wget www.netresec.com/?download=NetworkMiner -O /tmp/nm.zip
sudo unzip /tmp/nm.zip -d /opt/
cd /opt/NetworkMiner*
sudo chmod +x NetworkMiner.exe
sudo chmod -R go+w AssembledFiles/
sudo chmod -R go+w Captures/
for more:[resource]
https://www.netresec.com/?page=Resources
.......................................................................................
15.
To install
sudo apt-get install tcpdump
more info:
https://www.tecmint.com/12-tcpdump-commands-a-network-sniffer-tool/
.......................................................................................
16.
To install
sudo apt-get install wireshark
more info:
https://www.lifewire.com/wireshark-tutorial-4143298
......................................................................................
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment