From c0ed79350e3202fce841cb2cda337b8ecdf52b1c Mon Sep 17 00:00:00 2001 From: makefu Date: Mon, 29 Jul 2013 09:45:21 +0200 Subject: add tp-link default wpa key implementation --- usr/lib/autowifi/plugins/02tplink | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 usr/lib/autowifi/plugins/02tplink diff --git a/usr/lib/autowifi/plugins/02tplink b/usr/lib/autowifi/plugins/02tplink new file mode 100755 index 00000000..b2b96f95 --- /dev/null +++ b/usr/lib/autowifi/plugins/02tplink @@ -0,0 +1,17 @@ +#!/bin/sh +# Implementation of TP-Link default WPA Key +# Based on +# http://www.wardriving-forum.de/forum/f321/ezwlan-android-2-1-a-70045-4.html#post342481 + +cd $(dirname $(readlink -f $0)) +. ../lib/plugin_core + +parse_plugin_args "$@" + +! check_vendor_mac $VENDOR_MAC "F8D111" && echo "$VENDOR_MAC not affected" && exit 1 +! echo $ESSID | egrep -q '^tp' && echo "$ESSID not affected" && exit 1 + + +# printf always makes string to lower, need that for correct md5sum +printf ${MAC:4:12} +exit 0 -- cgit v1.2.3