Skip to content

Instantly share code, notes, and snippets.

@zicodhkbd
Created November 2, 2019 16:25
Show Gist options
  • Save zicodhkbd/69c9df250567529950e2655f544c71d3 to your computer and use it in GitHub Desktop.
Save zicodhkbd/69c9df250567529950e2655f544c71d3 to your computer and use it in GitHub Desktop.
Wireshark Network Analyzer On Ubuntu 18.04
#!/bin/sh
sudo add-apt-repository ppa:wireshark-dev/stable
sudo apt update
sudo apt install wireshark
sudo usermod -a -G wireshark sarif
sudo chgrp wireshark /usr/bin/dumpcap
sudo chmod 750 /usr/bin/dumpcap
sudo setcap cap_net_raw,cap_net_admin=eip /usr/bin/dumpcap
sudo getcap /usr/bin/dumpcap
sudo wireshark
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment