├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── evil_ssdp.py ├── requirements.txt └── templates ├── bitcoin ├── device.xml ├── present.html └── service.xml ├── microsoft-azure ├── device.xml ├── present.html └── service.xml ├── office365 ├── device.xml ├── present.html └── service.xml ├── password-vault ├── device.xml ├── present.html └── service.xml ├── scanner ├── device.xml ├── present.html └── service.xml ├── xxe-exfil ├── data.dtd ├── device.xml ├── present.html └── service.xml └── xxe-smb ├── device.xml ├── present.html └── service.xml /.gitignore: -------------------------------------------------------------------------------- 1 | logs-essdp.txt 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/README.md -------------------------------------------------------------------------------- /evil_ssdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/evil_ssdp.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | netifaces 2 | -------------------------------------------------------------------------------- /templates/bitcoin/device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/bitcoin/device.xml -------------------------------------------------------------------------------- /templates/bitcoin/present.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/bitcoin/present.html -------------------------------------------------------------------------------- /templates/bitcoin/service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/bitcoin/service.xml -------------------------------------------------------------------------------- /templates/microsoft-azure/device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/microsoft-azure/device.xml -------------------------------------------------------------------------------- /templates/microsoft-azure/present.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/microsoft-azure/present.html -------------------------------------------------------------------------------- /templates/microsoft-azure/service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/microsoft-azure/service.xml -------------------------------------------------------------------------------- /templates/office365/device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/office365/device.xml -------------------------------------------------------------------------------- /templates/office365/present.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/office365/present.html -------------------------------------------------------------------------------- /templates/office365/service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/office365/service.xml -------------------------------------------------------------------------------- /templates/password-vault/device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/password-vault/device.xml -------------------------------------------------------------------------------- /templates/password-vault/present.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/password-vault/present.html -------------------------------------------------------------------------------- /templates/password-vault/service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/password-vault/service.xml -------------------------------------------------------------------------------- /templates/scanner/device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/scanner/device.xml -------------------------------------------------------------------------------- /templates/scanner/present.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/scanner/present.html -------------------------------------------------------------------------------- /templates/scanner/service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/scanner/service.xml -------------------------------------------------------------------------------- /templates/xxe-exfil/data.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/xxe-exfil/data.dtd -------------------------------------------------------------------------------- /templates/xxe-exfil/device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/xxe-exfil/device.xml -------------------------------------------------------------------------------- /templates/xxe-exfil/present.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/xxe-exfil/present.html -------------------------------------------------------------------------------- /templates/xxe-exfil/service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/xxe-exfil/service.xml -------------------------------------------------------------------------------- /templates/xxe-smb/device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/xxe-smb/device.xml -------------------------------------------------------------------------------- /templates/xxe-smb/present.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/xxe-smb/present.html -------------------------------------------------------------------------------- /templates/xxe-smb/service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/initstring/evil-ssdp/HEAD/templates/xxe-smb/service.xml --------------------------------------------------------------------------------