gitextract_p06zdemw/ ├── .gitignore ├── README.md ├── config.yml.example ├── gitpwnd/ │ ├── agent.py.template │ ├── bootstrap.py.template │ └── payload.py.template ├── requirements.txt ├── server/ │ ├── README.md │ ├── gitpwnd/ │ │ ├── __init__.py │ │ ├── controllers.py │ │ ├── static/ │ │ │ ├── css/ │ │ │ │ └── prism.css │ │ │ └── js/ │ │ │ └── prism.js │ │ ├── templates/ │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── macros.html │ │ │ ├── nodes.html │ │ │ └── setup.html │ │ └── util/ │ │ ├── __init__.py │ │ ├── crypto_helper.py │ │ ├── file_helper.py │ │ ├── git_helper.py │ │ └── intel_helper.py │ ├── requirements.txt │ ├── run_ipython.sh │ ├── server.py │ ├── server_creds.yml.template │ └── tests/ │ ├── sample_intel.json │ └── test_intel_helper.py └── setup.py