From a52f713a48fbb1aa63958d6fae571a0b2a274693 Mon Sep 17 00:00:00 2001 From: Aiden Gerbrandt Date: Thu, 12 Mar 2026 23:35:14 -0500 Subject: [PATCH] added wireshark --- README.md | 1 + Software/Wireshark.md | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 Software/Wireshark.md diff --git a/README.md b/README.md index bb24b2b..a3ec28c 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ 4. [VirtualBox](Software/VirtualBox.md) 5. [Virtual Machine Manager](Software/VirtualMachineManager.md) (virt-manager) 6. [VMWare Workstation](Software/VMWareWorkstation.md) + 7. [Wireshark](Software/Wireshark.md) 3. Tools ## Preamble diff --git a/Software/Wireshark.md b/Software/Wireshark.md new file mode 100644 index 0000000..16f2403 --- /dev/null +++ b/Software/Wireshark.md @@ -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 +```