summaryrefslogtreecommitdiffstats
path: root/recon/inspect_wifi/plugins/02tplink
diff options
context:
space:
mode:
Diffstat (limited to 'recon/inspect_wifi/plugins/02tplink')
-rwxr-xr-xrecon/inspect_wifi/plugins/02tplink24
1 files changed, 0 insertions, 24 deletions
diff --git a/recon/inspect_wifi/plugins/02tplink b/recon/inspect_wifi/plugins/02tplink
deleted file mode 100755
index 522c0845..00000000
--- a/recon/inspect_wifi/plugins/02tplink
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/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