added wireshark
This commit is contained in:
@@ -9,6 +9,7 @@
|
|||||||
4. [VirtualBox](Software/VirtualBox.md)
|
4. [VirtualBox](Software/VirtualBox.md)
|
||||||
5. [Virtual Machine Manager](Software/VirtualMachineManager.md) (virt-manager)
|
5. [Virtual Machine Manager](Software/VirtualMachineManager.md) (virt-manager)
|
||||||
6. [VMWare Workstation](Software/VMWareWorkstation.md)
|
6. [VMWare Workstation](Software/VMWareWorkstation.md)
|
||||||
|
7. [Wireshark](Software/Wireshark.md)
|
||||||
3. Tools
|
3. Tools
|
||||||
|
|
||||||
## Preamble
|
## Preamble
|
||||||
|
|||||||
36
Software/Wireshark.md
Normal file
36
Software/Wireshark.md
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
Classes:
|
||||||
|
- Networking for Cybersecurity
|
||||||
|
---
|
||||||
|
|
||||||
|
# Wireshark
|
||||||
|
Wireshark is a network traffic and protocol analyzer/sniffer with a graphical interface
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
**Note:** A reboot seems to be required after adding yourself to the wireshark group for interface monitoring permission to be recognised
|
||||||
|
|
||||||
|
### Arch-base
|
||||||
|
```sh
|
||||||
|
sudo pacman -S wireshark-qt
|
||||||
|
|
||||||
|
# add yourself to the wirehshark group
|
||||||
|
sudo gpasswd -a $USER wireshark
|
||||||
|
```
|
||||||
|
|
||||||
|
### Debian/Ubuntu/Mint
|
||||||
|
Note: Answer **Yes** to the prompt about enabling the 'wireshark' group, so that you can allow your user to monitor traffic.
|
||||||
|
```sh
|
||||||
|
sudo apt install wireshark
|
||||||
|
|
||||||
|
# add yourself to the wirehshark group
|
||||||
|
sudo gpasswd -a $USER wireshark
|
||||||
|
```
|
||||||
|
|
||||||
|
### Fedora
|
||||||
|
```sh
|
||||||
|
sudo dnf install wireshark
|
||||||
|
|
||||||
|
# add yourself to the wirehshark group
|
||||||
|
sudo gpasswd -a $USER wireshark
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user