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
17 lines
235 B
Bash
Executable File
17 lines
235 B
Bash
Executable File
#!/bin/sh
|
|
#2015 - Whistle Master
|
|
|
|
|
|
|
|
MYTIME=`date +%s`
|
|
MYCMD=`cat /tmp/wps.run`
|
|
|
|
if [ "$1" = "start" ]; then
|
|
eval ${MYCMD}
|
|
rm -rf /tmp/wps.run
|
|
elif [ "$1" = "stop" ]; then
|
|
killall -9 reaver
|
|
killall -9 bully
|
|
|
|
rm -rf /tmp/wps.run
|
|
fi |