-
Notifications
You must be signed in to change notification settings - Fork 2
π€Έ Usage Guide
xenthy edited this page Oct 31, 2020
·
2 revisions
Running ThreatNeedle:
β make
or
β sudo python3 src/main.pyCleaning up (removes .pyc, .cap, and .cache/):
β make cleanRunning ThreatNeedle:
β make
or
β python src/main.pyCleaning up (removes .pyc, .cap, and .cache/):
β make cleanRunning ThreatNeedle:
Due to the nature of this network forensic tool, the docker container has to run with the --network host flag in order to listen for network packets on the host's network interfaces.
Hence, this tool will not work as intended on Windows as --network host is not supported on docker for Windows.
β make doc
or
β sudo docker build -t <name>:latest .
β sudo docker run --network host -ti <name> (run in interactive mode, able to view stdout, stderr)
β sudo docker run --network host -td <name> (run in detached mode)Cleaning up (removes ALL images, containers, volumes, and networks):
β make docclean