├── .clang-format ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── Injector ├── Injector.cpp ├── Injector.vcxproj └── Injector.vcxproj.filters ├── Installer ├── App.config ├── Installer.cs ├── Installer.csproj ├── NSudoLG.exe ├── Properties │ └── AssemblyInfo.cs └── app.manifest ├── LICENSE ├── README.md ├── SandboxBootkit.sln └── SandboxBootkit ├── Efi.cpp ├── Efi.hpp ├── EfiEntry.cpp ├── EfiUtils.cpp ├── EfiUtils.hpp ├── PatchNtoskrnl.cpp ├── PatchNtoskrnl.hpp ├── ProcessorBind.hpp ├── SandboxBootkit.vcxproj └── SandboxBootkit.vcxproj.filters /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/.gitmodules -------------------------------------------------------------------------------- /Injector/Injector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/Injector/Injector.cpp -------------------------------------------------------------------------------- /Injector/Injector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/Injector/Injector.vcxproj -------------------------------------------------------------------------------- /Injector/Injector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/Injector/Injector.vcxproj.filters -------------------------------------------------------------------------------- /Installer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/Installer/App.config -------------------------------------------------------------------------------- /Installer/Installer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/Installer/Installer.cs -------------------------------------------------------------------------------- /Installer/Installer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/Installer/Installer.csproj -------------------------------------------------------------------------------- /Installer/NSudoLG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/Installer/NSudoLG.exe -------------------------------------------------------------------------------- /Installer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/Installer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Installer/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/Installer/app.manifest -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/README.md -------------------------------------------------------------------------------- /SandboxBootkit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/SandboxBootkit.sln -------------------------------------------------------------------------------- /SandboxBootkit/Efi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/SandboxBootkit/Efi.cpp -------------------------------------------------------------------------------- /SandboxBootkit/Efi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/SandboxBootkit/Efi.hpp -------------------------------------------------------------------------------- /SandboxBootkit/EfiEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/SandboxBootkit/EfiEntry.cpp -------------------------------------------------------------------------------- /SandboxBootkit/EfiUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/SandboxBootkit/EfiUtils.cpp -------------------------------------------------------------------------------- /SandboxBootkit/EfiUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/SandboxBootkit/EfiUtils.hpp -------------------------------------------------------------------------------- /SandboxBootkit/PatchNtoskrnl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/SandboxBootkit/PatchNtoskrnl.cpp -------------------------------------------------------------------------------- /SandboxBootkit/PatchNtoskrnl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/SandboxBootkit/PatchNtoskrnl.hpp -------------------------------------------------------------------------------- /SandboxBootkit/ProcessorBind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/SandboxBootkit/ProcessorBind.hpp -------------------------------------------------------------------------------- /SandboxBootkit/SandboxBootkit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/SandboxBootkit/SandboxBootkit.vcxproj -------------------------------------------------------------------------------- /SandboxBootkit/SandboxBootkit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/SandboxBootkit/HEAD/SandboxBootkit/SandboxBootkit.vcxproj.filters --------------------------------------------------------------------------------