├── .gitignore ├── Dockerfile ├── README.md ├── app └── app.py ├── boot.sh └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryDefense/log4j-honeypot-flask/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryDefense/log4j-honeypot-flask/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryDefense/log4j-honeypot-flask/HEAD/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryDefense/log4j-honeypot-flask/HEAD/app/app.py -------------------------------------------------------------------------------- /boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryDefense/log4j-honeypot-flask/HEAD/boot.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==0.10.1 2 | Requests>=2.26 3 | --------------------------------------------------------------------------------