forked from RoganDawes/P4wnP1
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
164 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# P4wnP1 demo payload by MaMe82 | ||
# ========================== | ||
|
||
|
||
# ============================= | ||
# USB setup | ||
# ============================= | ||
# Make sure to change USB_PID if you enable different USB functionality in order | ||
# to force Windows to enumerate the device again | ||
USB_VID="0x1D6B" # Vendor ID | ||
USB_PID="0x0237" # Product ID | ||
|
||
USE_ECM=true # kept enabled as fallback (could allow forwarding connection trough WiFi if added to payload) | ||
USE_RNDIS=true # kept enabled as fallback (could allow forwarding connection trough WiFi if added to payload) | ||
USE_HID=false | ||
USE_RAWHID=false | ||
USE_UMS=false | ||
|
||
# disable setting of static routes for all IPv4 addresses | ||
ROUTE_SPOOF=false | ||
|
||
WIFI_ACCESSPOINT=true | ||
WIFI_ACCESSPOINT_NAME="P4wnP1" | ||
WIFI_ACCESSPOINT_PSK="MaMe82-P4wnP1" | ||
WIFI_ACCESSPOINT_IP="172.24.0.1" # IP used by P4wnP1 | ||
WIFI_ACCESSPOINT_NETMASK="255.255.255.0" | ||
WIFI_ACCESSPOINT_DHCP_RANGE="172.24.0.2,172.24.0.100" # DHCP Server IP Range | ||
WIFI_ACCESSPOINT_HIDE_SSID=false # use to hide SSID of WLAN (you have to manually connect to the name given by EIFI_ACCESSPOINT_NAME) | ||
|
||
WIFI_CLIENT=true | ||
WIFI_CLIENT_SSID="YourAPName" # name of target network | ||
WIFI_CLIENT_PSK="YourAPPassword" # passphrase for target network | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters