diff options
| author | makefu <github@syntax-fehler.de> | 2013-06-07 00:46:36 +0200 |
|---|---|---|
| committer | makefu <github@syntax-fehler.de> | 2013-06-07 00:46:36 +0200 |
| commit | 83baf76c734a5c9471fd9ab4dd90c952aba4e6a0 (patch) | |
| tree | f2c429cb79f7f3937e43130a50241a2e7c81950b /autowifi/confdir/cracks | |
| parent | b0273180da89e11cd6a7346ed1a72e9f17fbf230 (diff) | |
| parent | 5a428d4646b73f16b890f6c089a67dbc710df533 (diff) | |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'autowifi/confdir/cracks')
| -rwxr-xr-x | autowifi/confdir/cracks/00profile | 11 | ||||
| -rwxr-xr-x | autowifi/confdir/cracks/01open | 6 |
2 files changed, 17 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) diff --git a/autowifi/confdir/cracks/01open b/autowifi/confdir/cracks/01open new file mode 100755 index 00000000..7bd98e20 --- /dev/null +++ b/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 |
