├── .gitignore ├── LICENSE ├── README.md ├── TestingDriver ├── .vs │ └── TestingDriver │ │ └── v16 │ │ ├── .suo │ │ ├── Browse.VC.db │ │ ├── Browse.VC.db-shm │ │ ├── Browse.VC.db-wal │ │ ├── Browse.VC.opendb │ │ └── ipch │ │ └── AutoPCH │ │ ├── 2f5677b6dde03be1 │ │ └── DRIVERENTRY.ipch │ │ └── 5855d628c680a1b8 │ │ └── DRIVERENTRY.ipch ├── Debug │ └── TestingDriver.log ├── DriverEntry.cpp ├── TestingDriver.sln ├── TestingDriver.vcxproj ├── TestingDriver.vcxproj.filters └── x64 │ └── Debug │ ├── TestingDriver.Build.CppClean.log │ ├── TestingDriver.cer │ ├── TestingDriver.log │ ├── TestingDriver.pdb │ ├── TestingDriver.sys │ ├── TestingDriver.sys.recipe │ ├── TestingDriver.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── TestingDriver.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── signtool.command.1.tlog │ ├── signtool.read.1.tlog │ ├── signtool.timestamp.1.tlog │ └── signtool.write.1.tlog │ ├── TestingDriver.vcxproj.FileListAbsolute.txt │ ├── TestingDriver │ └── TestingDriver.sys │ ├── vc142.pdb │ └── vcpkg.applocal.log ├── compile.bat ├── compile.sh └── usermode.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/README.md -------------------------------------------------------------------------------- /TestingDriver/.vs/TestingDriver/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/.vs/TestingDriver/v16/.suo -------------------------------------------------------------------------------- /TestingDriver/.vs/TestingDriver/v16/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/.vs/TestingDriver/v16/Browse.VC.db -------------------------------------------------------------------------------- /TestingDriver/.vs/TestingDriver/v16/Browse.VC.db-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/.vs/TestingDriver/v16/Browse.VC.db-shm -------------------------------------------------------------------------------- /TestingDriver/.vs/TestingDriver/v16/Browse.VC.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestingDriver/.vs/TestingDriver/v16/Browse.VC.opendb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/.vs/TestingDriver/v16/Browse.VC.opendb -------------------------------------------------------------------------------- /TestingDriver/.vs/TestingDriver/v16/ipch/AutoPCH/2f5677b6dde03be1/DRIVERENTRY.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/.vs/TestingDriver/v16/ipch/AutoPCH/2f5677b6dde03be1/DRIVERENTRY.ipch -------------------------------------------------------------------------------- /TestingDriver/.vs/TestingDriver/v16/ipch/AutoPCH/5855d628c680a1b8/DRIVERENTRY.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/.vs/TestingDriver/v16/ipch/AutoPCH/5855d628c680a1b8/DRIVERENTRY.ipch -------------------------------------------------------------------------------- /TestingDriver/Debug/TestingDriver.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/Debug/TestingDriver.log -------------------------------------------------------------------------------- /TestingDriver/DriverEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/DriverEntry.cpp -------------------------------------------------------------------------------- /TestingDriver/TestingDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/TestingDriver.sln -------------------------------------------------------------------------------- /TestingDriver/TestingDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/TestingDriver.vcxproj -------------------------------------------------------------------------------- /TestingDriver/TestingDriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/TestingDriver.vcxproj.filters -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.Build.CppClean.log -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.cer -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.log -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.pdb -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.sys -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.sys.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.sys.recipe -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.tlog/TestingDriver.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.tlog/TestingDriver.lastbuildstate -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.tlog/signtool.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.tlog/signtool.command.1.tlog -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.tlog/signtool.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.tlog/signtool.read.1.tlog -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.tlog/signtool.timestamp.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.tlog/signtool.timestamp.1.tlog -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.tlog/signtool.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.tlog/signtool.write.1.tlog -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/TestingDriver/TestingDriver.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/TestingDriver/TestingDriver.sys -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/TestingDriver/x64/Debug/vc142.pdb -------------------------------------------------------------------------------- /TestingDriver/x64/Debug/vcpkg.applocal.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- 1 | cl.exe usermode.cpp 2 | -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/compile.sh -------------------------------------------------------------------------------- /usermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/TokenStealingDriver/HEAD/usermode.cpp --------------------------------------------------------------------------------