├── .gitignore ├── BruteforceCLSIDs.cpp ├── BruteforceCLSIDs.h ├── IStorageTrigger.cpp ├── IStorageTrigger.h ├── IUnknownObj.cpp ├── IUnknownObj.h ├── JuicyPotatoNG.cpp ├── JuicyPotatoNG.sln ├── JuicyPotatoNG.vcxproj ├── JuicyPotatoNG.vcxproj.filters ├── LICENSE ├── PotatoTrigger.cpp ├── PotatoTrigger.h ├── README.md ├── SSPIHooks.cpp ├── SSPIHooks.h ├── demo.png └── test_system_ports.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/.gitignore -------------------------------------------------------------------------------- /BruteforceCLSIDs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/BruteforceCLSIDs.cpp -------------------------------------------------------------------------------- /BruteforceCLSIDs.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "Windows.h" 3 | 4 | void BruteforceAllClisds(); -------------------------------------------------------------------------------- /IStorageTrigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/IStorageTrigger.cpp -------------------------------------------------------------------------------- /IStorageTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/IStorageTrigger.h -------------------------------------------------------------------------------- /IUnknownObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/IUnknownObj.cpp -------------------------------------------------------------------------------- /IUnknownObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/IUnknownObj.h -------------------------------------------------------------------------------- /JuicyPotatoNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/JuicyPotatoNG.cpp -------------------------------------------------------------------------------- /JuicyPotatoNG.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/JuicyPotatoNG.sln -------------------------------------------------------------------------------- /JuicyPotatoNG.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/JuicyPotatoNG.vcxproj -------------------------------------------------------------------------------- /JuicyPotatoNG.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/JuicyPotatoNG.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/LICENSE -------------------------------------------------------------------------------- /PotatoTrigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/PotatoTrigger.cpp -------------------------------------------------------------------------------- /PotatoTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/PotatoTrigger.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/README.md -------------------------------------------------------------------------------- /SSPIHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/SSPIHooks.cpp -------------------------------------------------------------------------------- /SSPIHooks.h: -------------------------------------------------------------------------------- 1 | #define SECURITY_WIN32 2 | 3 | #pragma once 4 | #include "Windows.h" 5 | 6 | void HookSSPIForTokenStealing(wchar_t* clsid); 7 | -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/demo.png -------------------------------------------------------------------------------- /test_system_ports.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonioCoco/JuicyPotatoNG/HEAD/test_system_ports.ps1 --------------------------------------------------------------------------------