Skip to content

Instantly share code, notes, and snippets.

@mmkhitaryan
Last active December 13, 2020 15:37
Show Gist options
  • Save mmkhitaryan/22f1db36b36dd834c9ad6fb0cce32b43 to your computer and use it in GitHub Desktop.
Save mmkhitaryan/22f1db36b36dd834c9ad6fb0cce32b43 to your computer and use it in GitHub Desktop.
Bot honeypot
version: "3.9"
services:
mitmproxy:
image: mitmproxy/mitmproxy
command: "mitmweb --web-host 0.0.0.0 --mode reverse:http://web:5000/ --set block_global=false"
ports:
- "80:8080"
- "8080:8080"
- "9000:8080"
- "8000:8080"
- "5000:8080"
- "127.0.0.1:18081:8081"
use ssh port forwrding to connect to the admin panel:
```ssh -L 8081:127.0.0.1:8081 root@ip```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment