summaryrefslogtreecommitdiffstats
path: root/autowifi/confdir/cracks/00profile
diff options
context:
space:
mode:
Diffstat (limited to 'autowifi/confdir/cracks/00profile')
-rwxr-xr-xautowifi/confdir/cracks/00profile11
1 files changed, 0 insertions, 11 deletions
diff --git a/autowifi/confdir/cracks/00profile b/autowifi/confdir/cracks/00profile
deleted file mode 100755
index c2ad6ec7..00000000
--- a/autowifi/confdir/cracks/00profile
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh -x
-#ESSID MAC CHANNEL ENCRYPTION WPA WPA2
-# ENV:
-# root (default: /)
-root=${root:-/}
-cat $root/wifi_stats 2>/dev/null | (while IFS='|' read SSID MAC BANDW KEY; do
- if [ "$1" = "$SSID" -a "$2" = "$MAC" ]; then
- echo $KEY
- exit 0
- fi
-done; exit 1)