├── .gitmodules ├── Dockerfile ├── README.md ├── exploit.py ├── requirements.txt └── utils ├── __pycache__ └── httppost.cpython-39.pyc └── httppost.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puzzlepeaches/Log4jCenter/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puzzlepeaches/Log4jCenter/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puzzlepeaches/Log4jCenter/HEAD/README.md -------------------------------------------------------------------------------- /exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puzzlepeaches/Log4jCenter/HEAD/exploit.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /utils/__pycache__/httppost.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puzzlepeaches/Log4jCenter/HEAD/utils/__pycache__/httppost.cpython-39.pyc -------------------------------------------------------------------------------- /utils/httppost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puzzlepeaches/Log4jCenter/HEAD/utils/httppost.py --------------------------------------------------------------------------------