├── Dockerfile ├── README.md ├── configs ├── CVE-2020-3452 │ ├── CVE-2020-3452.yml │ ├── mst.txt │ └── oem.txt ├── auto-config-gen.json ├── auto-config-gen.yml ├── avtech-devices.json ├── generic-listener.json ├── generic-listener.yml ├── hajime.json ├── http-log-headers.json ├── http.json ├── pop3.json ├── pop3.yml ├── smtp-big-turnip.yml ├── smtp.json └── tarpit.yml ├── docs └── pop3-example.png ├── hpfeeds.py ├── json-to-yaml.py ├── logging.cfg ├── requirements.txt ├── supervisor-template.conf └── uhp.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/README.md -------------------------------------------------------------------------------- /configs/CVE-2020-3452/CVE-2020-3452.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/CVE-2020-3452/CVE-2020-3452.yml -------------------------------------------------------------------------------- /configs/CVE-2020-3452/mst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/CVE-2020-3452/mst.txt -------------------------------------------------------------------------------- /configs/CVE-2020-3452/oem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/CVE-2020-3452/oem.txt -------------------------------------------------------------------------------- /configs/auto-config-gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/auto-config-gen.json -------------------------------------------------------------------------------- /configs/auto-config-gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/auto-config-gen.yml -------------------------------------------------------------------------------- /configs/avtech-devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/avtech-devices.json -------------------------------------------------------------------------------- /configs/generic-listener.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/generic-listener.json -------------------------------------------------------------------------------- /configs/generic-listener.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/generic-listener.yml -------------------------------------------------------------------------------- /configs/hajime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/hajime.json -------------------------------------------------------------------------------- /configs/http-log-headers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/http-log-headers.json -------------------------------------------------------------------------------- /configs/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/http.json -------------------------------------------------------------------------------- /configs/pop3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/pop3.json -------------------------------------------------------------------------------- /configs/pop3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/pop3.yml -------------------------------------------------------------------------------- /configs/smtp-big-turnip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/smtp-big-turnip.yml -------------------------------------------------------------------------------- /configs/smtp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/smtp.json -------------------------------------------------------------------------------- /configs/tarpit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/configs/tarpit.yml -------------------------------------------------------------------------------- /docs/pop3-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/docs/pop3-example.png -------------------------------------------------------------------------------- /hpfeeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/hpfeeds.py -------------------------------------------------------------------------------- /json-to-yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/json-to-yaml.py -------------------------------------------------------------------------------- /logging.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/logging.cfg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyyaml 2 | -------------------------------------------------------------------------------- /supervisor-template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/supervisor-template.conf -------------------------------------------------------------------------------- /uhp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattCarothers/uhp/HEAD/uhp.py --------------------------------------------------------------------------------