added wireshark

This commit is contained in:
2026-03-12 23:35:14 -05:00
parent 28688f13ca
commit a52f713a48
2 changed files with 37 additions and 0 deletions

36
Software/Wireshark.md Normal file
View 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
```