├── .gitignore ├── CLSID ├── GetCLSID.ps1 ├── MakeREADME.ps1 ├── README.md ├── Windows_10_Enterprise │ ├── CLSID.list │ ├── CLSIDs.csv │ └── README.md ├── Windows_10_Pro │ ├── CLSID.list │ ├── CLSIDs.csv │ └── README.md ├── Windows_7_Enterprise │ ├── CLSID.list │ ├── CLSIDs.csv │ └── README.md ├── Windows_8.1_Enterprise │ ├── CLSID.list │ ├── CLSIDs.csv │ └── README.md ├── Windows_Server_2008_R2_Enterprise │ ├── CLSID.list │ ├── CLSIDs.csv │ └── README.md ├── Windows_Server_2012_Datacenter │ ├── CLSID.list │ ├── CLSIDs.csv │ └── README.md ├── Windows_Server_2016_Standard │ ├── CLSID.list │ ├── CLSIDs.csv │ └── README.md └── utils │ ├── ConvertTo-Markdown.ps1 │ └── Join-Object.ps1 ├── JuicyPotato ├── .gitignore ├── JuicyPotato.sdf ├── JuicyPotato.sln └── JuicyPotato │ ├── BlockingQueue.h │ ├── IStorageTrigger.cpp │ ├── IStorageTrigger.h │ ├── JuicyPotato.cpp │ ├── JuicyPotato.vcxproj │ ├── JuicyPotato.vcxproj.filters │ ├── JuicyPotato.vcxproj.user │ ├── LocalNegotiator.cpp │ ├── LocalNegotiator.h │ ├── MSFRottenPotato.h │ ├── dllmain.cpp │ ├── dump.stg │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── LICENSE ├── README.md ├── Test ├── .gitignore ├── README.md └── test_clsid.bat ├── _config.yml ├── appveyor.yml └── assets └── poc.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.deleteme 3 | -------------------------------------------------------------------------------- /CLSID/GetCLSID.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/GetCLSID.ps1 -------------------------------------------------------------------------------- /CLSID/MakeREADME.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/MakeREADME.ps1 -------------------------------------------------------------------------------- /CLSID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/README.md -------------------------------------------------------------------------------- /CLSID/Windows_10_Enterprise/CLSID.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_10_Enterprise/CLSID.list -------------------------------------------------------------------------------- /CLSID/Windows_10_Enterprise/CLSIDs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_10_Enterprise/CLSIDs.csv -------------------------------------------------------------------------------- /CLSID/Windows_10_Enterprise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_10_Enterprise/README.md -------------------------------------------------------------------------------- /CLSID/Windows_10_Pro/CLSID.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_10_Pro/CLSID.list -------------------------------------------------------------------------------- /CLSID/Windows_10_Pro/CLSIDs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_10_Pro/CLSIDs.csv -------------------------------------------------------------------------------- /CLSID/Windows_10_Pro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_10_Pro/README.md -------------------------------------------------------------------------------- /CLSID/Windows_7_Enterprise/CLSID.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_7_Enterprise/CLSID.list -------------------------------------------------------------------------------- /CLSID/Windows_7_Enterprise/CLSIDs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_7_Enterprise/CLSIDs.csv -------------------------------------------------------------------------------- /CLSID/Windows_7_Enterprise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_7_Enterprise/README.md -------------------------------------------------------------------------------- /CLSID/Windows_8.1_Enterprise/CLSID.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_8.1_Enterprise/CLSID.list -------------------------------------------------------------------------------- /CLSID/Windows_8.1_Enterprise/CLSIDs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_8.1_Enterprise/CLSIDs.csv -------------------------------------------------------------------------------- /CLSID/Windows_8.1_Enterprise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_8.1_Enterprise/README.md -------------------------------------------------------------------------------- /CLSID/Windows_Server_2008_R2_Enterprise/CLSID.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_Server_2008_R2_Enterprise/CLSID.list -------------------------------------------------------------------------------- /CLSID/Windows_Server_2008_R2_Enterprise/CLSIDs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_Server_2008_R2_Enterprise/CLSIDs.csv -------------------------------------------------------------------------------- /CLSID/Windows_Server_2008_R2_Enterprise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_Server_2008_R2_Enterprise/README.md -------------------------------------------------------------------------------- /CLSID/Windows_Server_2012_Datacenter/CLSID.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_Server_2012_Datacenter/CLSID.list -------------------------------------------------------------------------------- /CLSID/Windows_Server_2012_Datacenter/CLSIDs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_Server_2012_Datacenter/CLSIDs.csv -------------------------------------------------------------------------------- /CLSID/Windows_Server_2012_Datacenter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_Server_2012_Datacenter/README.md -------------------------------------------------------------------------------- /CLSID/Windows_Server_2016_Standard/CLSID.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_Server_2016_Standard/CLSID.list -------------------------------------------------------------------------------- /CLSID/Windows_Server_2016_Standard/CLSIDs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_Server_2016_Standard/CLSIDs.csv -------------------------------------------------------------------------------- /CLSID/Windows_Server_2016_Standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/Windows_Server_2016_Standard/README.md -------------------------------------------------------------------------------- /CLSID/utils/ConvertTo-Markdown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/utils/ConvertTo-Markdown.ps1 -------------------------------------------------------------------------------- /CLSID/utils/Join-Object.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/CLSID/utils/Join-Object.ps1 -------------------------------------------------------------------------------- /JuicyPotato/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/.gitignore -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato.sdf -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato.sln -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/BlockingQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/BlockingQueue.h -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/IStorageTrigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/IStorageTrigger.cpp -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/IStorageTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/IStorageTrigger.h -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/JuicyPotato.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/JuicyPotato.cpp -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/JuicyPotato.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/JuicyPotato.vcxproj -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/JuicyPotato.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/JuicyPotato.vcxproj.filters -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/JuicyPotato.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/JuicyPotato.vcxproj.user -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/LocalNegotiator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/LocalNegotiator.cpp -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/LocalNegotiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/LocalNegotiator.h -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/MSFRottenPotato.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/MSFRottenPotato.h -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/dllmain.cpp -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/dump.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/dump.stg -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/stdafx.cpp -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/stdafx.h -------------------------------------------------------------------------------- /JuicyPotato/JuicyPotato/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/JuicyPotato/JuicyPotato/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/README.md -------------------------------------------------------------------------------- /Test/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/Test/README.md -------------------------------------------------------------------------------- /Test/test_clsid.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/Test/test_clsid.bat -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/_config.yml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/appveyor.yml -------------------------------------------------------------------------------- /assets/poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/juicy-potato/HEAD/assets/poc.png --------------------------------------------------------------------------------