diff options
author | makefu <root@pigstarter.de> | 2013-06-09 12:38:56 +0200 |
---|---|---|
committer | makefu <root@pigstarter.de> | 2013-06-09 12:38:56 +0200 |
commit | 1d6382b8e751cf9c3ccc324db018b66e254d4cfa (patch) | |
tree | a9b43324b239e960381406fdf8ebede80710f30b /autowifi/confdir/cracks/00profile | |
parent | d61c839ba79158c0398c7ae4ad0f486347a41f9a (diff) | |
parent | 5a428d4646b73f16b890f6c089a67dbc710df533 (diff) |
Merge branch 'master' of https://github.com/krebscode/painload
Diffstat (limited to 'autowifi/confdir/cracks/00profile')
-rwxr-xr-x | autowifi/confdir/cracks/00profile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/autowifi/confdir/cracks/00profile b/autowifi/confdir/cracks/00profile new file mode 100755 index 00000000..c2ad6ec7 --- /dev/null +++ b/autowifi/confdir/cracks/00profile @@ -0,0 +1,11 @@ +#!/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) |