This executable can write data to local files.
This function can be performed by any unprivileged user.
wireshark -c 1 -i lo -k -f 'udp port 12345' &
echo DATA | nc -u 127.127.127.127 12345
This function is performed by the privileged user if executed via sudo because the acquired privileges are not dropped.
wireshark -c 1 -i lo -k -f 'udp port 12345' &
echo DATA | nc -u 127.127.127.127 12345
This executable can inherit functions from another.
This function can be performed by any unprivileged user.
wireshark
This function is performed by the privileged user if executed via sudo because the acquired privileges are not dropped.
wireshark