mirror of
https://github.com/hak5/nano-tetra-modules.git
synced 2025-10-29 16:58:09 +00:00
* Misc: Ignore JetBrains IDE files * Modules: Update Modules for 2.6.0 (1) * SiteSurvey: Actually install mdk3 dependency. * Modules: Bump version numbers for updated modules
12 lines
245 B
Bash
Executable File
12 lines
245 B
Bash
Executable File
#!/bin/sh
|
|
#2015 - Whistle Master
|
|
|
|
MYTIME=`date +%s`
|
|
MYINTERFACE=`uci get p0f.run.interface`
|
|
|
|
if [ "$1" = "start" ]; then
|
|
p0f -i ${MYINTERFACE} -o /pineapple/modules/p0f/log/output_${MYTIME}.log
|
|
elif [ "$1" = "stop" ]; then
|
|
killall -9 p0f
|
|
fi
|