├── LICENSE ├── Makefile ├── README.md ├── certs └── .gitignore ├── gen-cert.sh ├── main.py ├── requirements.txt ├── start.sh └── static ├── agent.js ├── control.html └── infect.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rito/peeko/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rito/peeko/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rito/peeko/HEAD/README.md -------------------------------------------------------------------------------- /certs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gen-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rito/peeko/HEAD/gen-cert.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rito/peeko/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | uvicorn[standard] 3 | -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rito/peeko/HEAD/start.sh -------------------------------------------------------------------------------- /static/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rito/peeko/HEAD/static/agent.js -------------------------------------------------------------------------------- /static/control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rito/peeko/HEAD/static/control.html -------------------------------------------------------------------------------- /static/infect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3rito/peeko/HEAD/static/infect.html --------------------------------------------------------------------------------