Some samples will require running as root via sudo, such as tcpdump (#69) when capturing network traffic. Right now, sudo pipenv does not work because the venv is stored in the user's home directory, not /root.
This is only a problem for 1 sample at the moment so I don't want to make differ require sudo for everything. This problem theoretically goes away if we run samples within docker (assuming the current user is part of the docker group).
Some samples will require running as
root
via sudo, such astcpdump
(#69) when capturing network traffic. Right now,sudo pipenv
does not work because the venv is stored in the user's home directory, not/root
.This is only a problem for 1 sample at the moment so I don't want to make differ require
sudo
for everything. This problem theoretically goes away if we run samples within docker (assuming the current user is part of thedocker
group).