Deploying a custom file server for red teaming engagements is often a tedious process. This self-hosted file sharing service eliminates the hassle of configuring web servers and writing complex rewrite rules. Designed specifically for security professionals, it allows you to easily upload and manage files through a responsive, drag-and-drop web interface.
Key capabilities include:
The entire platform operates as a single executable with zero dependencies, automatically provisioning TLS certificates via Let's Encrypt for secure deployment.
services:
pwndrop:
image: lscr.io/linuxserver/pwndrop:latest
container_name: pwndrop
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- SECRET_PATH=${SECRET_PATH}
volumes:
- ./config:/config
- ./data:/var/www/pwndrop/data
ports:
- 8080:8080
restart: unless-stoppedSECRET_PATH=/pwndropAuto-fetched 20 minutes ago
Auto-fetched 20 minutes ago