summaryrefslogtreecommitdiffstats
path: root/recon/autowifi/plugins/plugin_core
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2014-12-20 22:49:58 +0100
committermakefu <github@syntax-fehler.de>2014-12-20 22:49:58 +0100
commitb7ea9e035a729186afb57894891d3bdec43aa9ae (patch)
tree1d56cf8e00c536da4ecd4a2dff333b2b6233b9b9 /recon/autowifi/plugins/plugin_core
parentd9cb390f1d29b2ff11ac0c3deae093f4d5232d54 (diff)
parentf0ee1f2a63be9238506ec15da655a6077caaa807 (diff)
Merge branch 'master' of ssh://github.com/krebscode/painload
Diffstat (limited to 'recon/autowifi/plugins/plugin_core')
-rw-r--r--recon/autowifi/plugins/plugin_core41
1 files changed, 41 insertions, 0 deletions
diff --git a/recon/autowifi/plugins/plugin_core b/recon/autowifi/plugins/plugin_core
new file mode 100644
index 00000000..e79a3c05
--- /dev/null
+++ b/recon/autowifi/plugins/plugin_core
@@ -0,0 +1,41 @@
+#!/bin/sh
+parse_plugin_args(){
+ [ $# -ne 4 ] && plugin_usage && exit 1
+ # convenience function to put args in ENV variables
+ ESSID="$1"
+
+ # mac is returned without colon
+ MAC=$(printf "%s" "$2" | sed 's/://g')
+ # split up the mac address to vendor and private part
+ VENDOR_MAC=${MAC:0:6}
+ PRIVATE_MAC=${MAC:6:12}
+ CHANNEL="$3"
+ ENC="$4"
+ if [ ${#MAC} -ne 12 ] ;then
+ echo "MAC malformed"
+ exit 1
+ fi
+}
+plugin_usage(){
+ cat << EOF
+usage: $0 ESSID MAC CHANNEL ENC"
+
+ ESSID - string
+ MAC - 00:11:22:33:44:55
+ CHANNEL - 4
+ ENC - wpa
+EOF
+
+}
+
+check_vendor_mac(){
+ needle="$(printf $1 | tr '[A-Z]' '[a-z]')"
+ shift
+ for i in "$@";do
+ [ "$needle" == "$(printf $i | tr '[A-Z]' '[a-z]')" ] && return 0
+ done
+ return 1
+}
+check_painmode(){
+ test -z "${painmode:-}" && echo "painmode required" && exit 1
+}