Skip to content

Instantly share code, notes, and snippets.

@oxygen
Created March 20, 2019 00:31
Show Gist options
  • Save oxygen/aaa9cf24621a1709220440ad1dafc989 to your computer and use it in GitHub Desktop.
Save oxygen/aaa9cf24621a1709220440ad1dafc989 to your computer and use it in GitHub Desktop.
Wireshark non-root permissions Ubuntu
sudo apt-get install wireshark libcap2-bin
sudo groupadd wireshark
sudo usermod -a -G wireshark $USER
sudo chgrp wireshark /usr/bin/dumpcap
sudo chmod 755 /usr/bin/dumpcap
sudo setcap cap_net_raw,cap_net_admin=eip /usr/bin/dumpcap
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment