mirror of
https://github.com/hak5/keycroc-payloads.git
synced 2026-04-02 00:18:41 +01:00
12 lines
293 B
Plaintext
12 lines
293 B
Plaintext
# Title: WLAN IP Info
|
|
# Description: Returns IPv4 address of wlan0 interface
|
|
# Author: Hak5Darren
|
|
# Version: 1.0
|
|
# Category: Example
|
|
#
|
|
#
|
|
MATCH __crocctl-ipinfo
|
|
QUACK ENTER
|
|
QUACK STRING $(ifconfig wlan0 | grep "inet addr" | awk {'print $2'} | cut -c 6-)
|
|
QUACK ENTER
|