diff options
author | makefu <github@syntax-fehler.de> | 2014-12-22 20:37:44 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2014-12-22 20:37:44 +0100 |
commit | c9eb756542891d07b363116569befa80ccda9e55 (patch) | |
tree | ca52e028d80502597639067c05f8871bc5918a75 /recon/inspect_wifi/plugins/02tplink | |
parent | 3a7a49b9bda4b2df849db827c61aa347a68a96be (diff) |
add belkin wps plugin
Diffstat (limited to 'recon/inspect_wifi/plugins/02tplink')
-rwxr-xr-x | recon/inspect_wifi/plugins/02tplink | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/recon/inspect_wifi/plugins/02tplink b/recon/inspect_wifi/plugins/02tplink new file mode 100755 index 00000000..522c0845 --- /dev/null +++ b/recon/inspect_wifi/plugins/02tplink @@ -0,0 +1,24 @@ +#!/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)) +. ./plugin_core + +parse_plugin_args "$@" + +if ! check_vendor_mac $VENDOR_MAC F8D111; then + echo "$VENDOR_MAC not affected" + exit 1 +fi + +if echo "$ESSID" | grep -q '^tp'; then + echo "$ESSID not affected" + exit 1 +fi + + +# printf always makes string to lower, need that for correct md5sum +printf "${MAC:4:12}" +exit 0 |