├── LICENSE ├── README.md ├── core ├── __init__.py ├── header.py ├── help.py └── platformdetection.py ├── payloads ├── basicinfolinux.hex ├── disableavg2012.hex ├── disableavg2013.hex ├── infograbberlinux.hex ├── mimikatzdl.hex ├── osxrootpasswords.hex ├── restartprank.hex └── wifibackdoor.hex ├── resources ├── micronucleus └── micronucleus.exe └── start.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/core/header.py -------------------------------------------------------------------------------- /core/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/core/help.py -------------------------------------------------------------------------------- /core/platformdetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/core/platformdetection.py -------------------------------------------------------------------------------- /payloads/basicinfolinux.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/payloads/basicinfolinux.hex -------------------------------------------------------------------------------- /payloads/disableavg2012.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/payloads/disableavg2012.hex -------------------------------------------------------------------------------- /payloads/disableavg2013.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/payloads/disableavg2013.hex -------------------------------------------------------------------------------- /payloads/infograbberlinux.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/payloads/infograbberlinux.hex -------------------------------------------------------------------------------- /payloads/mimikatzdl.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/payloads/mimikatzdl.hex -------------------------------------------------------------------------------- /payloads/osxrootpasswords.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/payloads/osxrootpasswords.hex -------------------------------------------------------------------------------- /payloads/restartprank.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/payloads/restartprank.hex -------------------------------------------------------------------------------- /payloads/wifibackdoor.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/payloads/wifibackdoor.hex -------------------------------------------------------------------------------- /resources/micronucleus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/resources/micronucleus -------------------------------------------------------------------------------- /resources/micronucleus.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/resources/micronucleus.exe -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M4cs/DigiDuck-Framework/HEAD/start.py --------------------------------------------------------------------------------