diff options
author | makefu <root@pigstarter.de> | 2013-12-10 19:49:34 +0100 |
---|---|---|
committer | makefu <root@pigstarter.de> | 2013-12-10 19:49:34 +0100 |
commit | e847dd73730eb638d75e2d0cbc36340be7bb517e (patch) | |
tree | 26aa0e70c803ffb4d643e6f63ea05f8336668c57 /.graveyard/autowifi/confdir/cracks | |
parent | 9baf5c9a0a86cb94469eea069e984cc7253635b8 (diff) | |
parent | 93649c0d464de3b62dfd7fbc717386e6905bbbd2 (diff) |
Merge branch 'master' of https://github.com/krebscode/painload
Diffstat (limited to '.graveyard/autowifi/confdir/cracks')
-rwxr-xr-x | .graveyard/autowifi/confdir/cracks/00profile | 11 | ||||
-rwxr-xr-x | .graveyard/autowifi/confdir/cracks/01open | 6 |
2 files changed, 17 insertions, 0 deletions
diff --git a/.graveyard/autowifi/confdir/cracks/00profile b/.graveyard/autowifi/confdir/cracks/00profile new file mode 100755 index 00000000..c2ad6ec7 --- /dev/null +++ b/.graveyard/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) diff --git a/.graveyard/autowifi/confdir/cracks/01open b/.graveyard/autowifi/confdir/cracks/01open new file mode 100755 index 00000000..7bd98e20 --- /dev/null +++ b/.graveyard/autowifi/confdir/cracks/01open @@ -0,0 +1,6 @@ +#!/bin/sh -x +#ESSID MAC CHANNEL ENCRYPTION WPA WPA2 +if [ "$4" = "[ESS]" ]; then + exit 0 +fi +exit 1 |