Home |

Trigat

Packet Squirrel Responder Payload

01-05-2021

A simplified Responder payload I have created for the Packet Squirrel. The payload should be easy to read and modify.

Plug the Packet Squirrel device into an Ethernet wall jack and you're good to go. The logs will be saved to the external USB.

Language or Platform: Other

Code:

#!/bin/bash

# Initialize by turning Purple
LED M SOLID
SLEEP 5

NETMODE BRIDGE

# Wait for NIC
SLEEP 40

# Run Responder
python /mnt/Responder/Responder.py -I br-lan -wFf & LED C SOLID

# Turn Cyan (Light Blue) when running

# br-lan is the network interface

#####  GUIDE
#
# Use with Packet Squirrel Firmware: 2.0-stable
# Only tested on the original Packet Squirrel
#
# Install:
# Download Responder and copy to USB drive at:
# /mnt/Responder/
#
# USB drive must be plugged into Pack Squirrel.
#
# Responder logs are stored at: /mnt/Responder/logs
# Set permissions for logs: chmod -R 775 /mnt/Responder/logs
#
# Use Ethernet In port with target.
#
# You must edit the Responder command above to suit your needs.
#
# Basic Responder command:
# python /mnt/Responder/Responder.py -I $INTERFACE
#
# Responder options:
#
# Analyze Mode.  Monitor without responding:
# python /mnt/Responder/Responder.py -I $INTERFACE -A
#
# -wFf, -wrf, and -wbF are other good options
#
#####

Back