├── README.md ├── createfile ├── Release │ └── createfilee.pdb ├── createfile.sln ├── createfile.suo └── createfile │ ├── ReadMe.txt │ ├── Release │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── cl.command.1.tlog │ ├── createfilee.Build.CppClean.log │ ├── createfilee.exe.intermediate.manifest │ ├── createfilee.lastbuildstate │ ├── createfilee.log │ ├── createfilee.obj │ ├── createfilee.pch │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ ├── stdafx.obj │ └── vc100.pdb │ ├── createfile.cpp │ ├── createfile.vcxproj │ ├── createfile.vcxproj.filters │ ├── createfile.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── createremotethread ├── ReadMe.txt ├── createremotethread.cpp ├── createremotethread.vcxproj ├── createremotethread.vcxproj.filters ├── createremotethread.vcxproj.user ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── dga ├── main.c └── main.py ├── dllinject ├── dllinject.sln ├── dllinject.suo └── dllinject │ ├── ReadMe.txt │ ├── dllinject.cpp │ ├── dllinject.vcxproj │ ├── dllinject.vcxproj.filters │ ├── dllinject.vcxproj.user │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── dlltest ├── dlltest.sln ├── dlltest.suo └── dlltest │ ├── ReadMe.txt │ ├── detours.h │ ├── dllmain.cpp │ ├── dlltest.cpp │ ├── dlltest.vcxproj │ ├── dlltest.vcxproj.filters │ ├── dlltest.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── flags ├── flags.sln ├── flags.suo └── flags │ ├── ReadMe.txt │ ├── flags.cpp │ ├── flags.vcxproj │ ├── flags.vcxproj.filters │ ├── flags.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── helloworld ├── helloworld.sln ├── helloworld.suo └── helloworld │ ├── ReadMe.txt │ ├── helloworld.cpp │ ├── helloworld.vcxproj │ ├── helloworld.vcxproj.filters │ ├── helloworld.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── hookidt ├── mydriver.c ├── mydriver.pdb ├── mydriver.sys └── sources ├── hookmsr ├── mydriver.c ├── mydriver.pdb ├── mydriver.sys └── sources ├── hookssdt ├── mydriver.c ├── mydriver.sys └── sources ├── isdebuggerpresent ├── isdebuggerpresent.sln ├── isdebuggerpresent.suo └── isdebuggerpresent │ ├── ReadMe.txt │ ├── isdebuggerpresent.cpp │ ├── isdebuggerpresent.vcxproj │ ├── isdebuggerpresent.vcxproj.filters │ ├── isdebuggerpresent.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── kerneldebug ├── kerneldebug.sln ├── kerneldebug.suo └── kerneldebug │ ├── ReadMe.txt │ ├── kerneldebug.cpp │ ├── kerneldebug.vcxproj │ ├── kerneldebug.vcxproj.filters │ ├── kerneldebug.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── linearsweep ├── linear_sweep.sln ├── linear_sweep.suo └── linear_sweep │ ├── ReadMe.txt │ ├── linear_sweep.cpp │ ├── linear_sweep.vcxproj │ ├── linear_sweep.vcxproj.filters │ ├── linear_sweep.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── setwindowshookex ├── setwindowshookex.sln ├── setwindowshookex.suo └── setwindowshookex ├── ReadMe.txt ├── setwindowshookex.cpp ├── setwindowshookex.vcxproj ├── setwindowshookex.vcxproj.filters ├── setwindowshookex.vcxproj.user ├── stdafx.cpp ├── stdafx.h └── targetver.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/README.md -------------------------------------------------------------------------------- /createfile/Release/createfilee.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/Release/createfilee.pdb -------------------------------------------------------------------------------- /createfile/createfile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile.sln -------------------------------------------------------------------------------- /createfile/createfile.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile.suo -------------------------------------------------------------------------------- /createfile/createfile/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/ReadMe.txt -------------------------------------------------------------------------------- /createfile/createfile/Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /createfile/createfile/Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /createfile/createfile/Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /createfile/createfile/Release/createfilee.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/createfilee.Build.CppClean.log -------------------------------------------------------------------------------- /createfile/createfile/Release/createfilee.exe.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/createfilee.exe.intermediate.manifest -------------------------------------------------------------------------------- /createfile/createfile/Release/createfilee.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/createfilee.lastbuildstate -------------------------------------------------------------------------------- /createfile/createfile/Release/createfilee.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/createfilee.log -------------------------------------------------------------------------------- /createfile/createfile/Release/createfilee.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/createfilee.obj -------------------------------------------------------------------------------- /createfile/createfile/Release/createfilee.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/createfilee.pch -------------------------------------------------------------------------------- /createfile/createfile/Release/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/link.command.1.tlog -------------------------------------------------------------------------------- /createfile/createfile/Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/link.read.1.tlog -------------------------------------------------------------------------------- /createfile/createfile/Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/link.write.1.tlog -------------------------------------------------------------------------------- /createfile/createfile/Release/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/mt.command.1.tlog -------------------------------------------------------------------------------- /createfile/createfile/Release/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/mt.read.1.tlog -------------------------------------------------------------------------------- /createfile/createfile/Release/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/mt.write.1.tlog -------------------------------------------------------------------------------- /createfile/createfile/Release/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/stdafx.obj -------------------------------------------------------------------------------- /createfile/createfile/Release/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/Release/vc100.pdb -------------------------------------------------------------------------------- /createfile/createfile/createfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/createfile.cpp -------------------------------------------------------------------------------- /createfile/createfile/createfile.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/createfile.vcxproj -------------------------------------------------------------------------------- /createfile/createfile/createfile.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/createfile.vcxproj.filters -------------------------------------------------------------------------------- /createfile/createfile/createfile.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/createfile.vcxproj.user -------------------------------------------------------------------------------- /createfile/createfile/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/stdafx.cpp -------------------------------------------------------------------------------- /createfile/createfile/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/stdafx.h -------------------------------------------------------------------------------- /createfile/createfile/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createfile/createfile/targetver.h -------------------------------------------------------------------------------- /createremotethread/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createremotethread/ReadMe.txt -------------------------------------------------------------------------------- /createremotethread/createremotethread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createremotethread/createremotethread.cpp -------------------------------------------------------------------------------- /createremotethread/createremotethread.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createremotethread/createremotethread.vcxproj -------------------------------------------------------------------------------- /createremotethread/createremotethread.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createremotethread/createremotethread.vcxproj.filters -------------------------------------------------------------------------------- /createremotethread/createremotethread.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createremotethread/createremotethread.vcxproj.user -------------------------------------------------------------------------------- /createremotethread/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createremotethread/stdafx.cpp -------------------------------------------------------------------------------- /createremotethread/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createremotethread/stdafx.h -------------------------------------------------------------------------------- /createremotethread/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/createremotethread/targetver.h -------------------------------------------------------------------------------- /dga/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dga/main.c -------------------------------------------------------------------------------- /dga/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dga/main.py -------------------------------------------------------------------------------- /dllinject/dllinject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dllinject/dllinject.sln -------------------------------------------------------------------------------- /dllinject/dllinject.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dllinject/dllinject.suo -------------------------------------------------------------------------------- /dllinject/dllinject/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dllinject/dllinject/ReadMe.txt -------------------------------------------------------------------------------- /dllinject/dllinject/dllinject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dllinject/dllinject/dllinject.cpp -------------------------------------------------------------------------------- /dllinject/dllinject/dllinject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dllinject/dllinject/dllinject.vcxproj -------------------------------------------------------------------------------- /dllinject/dllinject/dllinject.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dllinject/dllinject/dllinject.vcxproj.filters -------------------------------------------------------------------------------- /dllinject/dllinject/dllinject.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dllinject/dllinject/dllinject.vcxproj.user -------------------------------------------------------------------------------- /dllinject/dllinject/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dllinject/dllinject/dllmain.cpp -------------------------------------------------------------------------------- /dllinject/dllinject/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dllinject/dllinject/stdafx.cpp -------------------------------------------------------------------------------- /dllinject/dllinject/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dllinject/dllinject/stdafx.h -------------------------------------------------------------------------------- /dllinject/dllinject/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dllinject/dllinject/targetver.h -------------------------------------------------------------------------------- /dlltest/dlltest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dlltest/dlltest.sln -------------------------------------------------------------------------------- /dlltest/dlltest.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dlltest/dlltest.suo -------------------------------------------------------------------------------- /dlltest/dlltest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dlltest/dlltest/ReadMe.txt -------------------------------------------------------------------------------- /dlltest/dlltest/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dlltest/dlltest/detours.h -------------------------------------------------------------------------------- /dlltest/dlltest/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dlltest/dlltest/dllmain.cpp -------------------------------------------------------------------------------- /dlltest/dlltest/dlltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dlltest/dlltest/dlltest.cpp -------------------------------------------------------------------------------- /dlltest/dlltest/dlltest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dlltest/dlltest/dlltest.vcxproj -------------------------------------------------------------------------------- /dlltest/dlltest/dlltest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dlltest/dlltest/dlltest.vcxproj.filters -------------------------------------------------------------------------------- /dlltest/dlltest/dlltest.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dlltest/dlltest/dlltest.vcxproj.user -------------------------------------------------------------------------------- /dlltest/dlltest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dlltest/dlltest/stdafx.cpp -------------------------------------------------------------------------------- /dlltest/dlltest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dlltest/dlltest/stdafx.h -------------------------------------------------------------------------------- /dlltest/dlltest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/dlltest/dlltest/targetver.h -------------------------------------------------------------------------------- /flags/flags.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/flags/flags.sln -------------------------------------------------------------------------------- /flags/flags.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/flags/flags.suo -------------------------------------------------------------------------------- /flags/flags/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/flags/flags/ReadMe.txt -------------------------------------------------------------------------------- /flags/flags/flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/flags/flags/flags.cpp -------------------------------------------------------------------------------- /flags/flags/flags.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/flags/flags/flags.vcxproj -------------------------------------------------------------------------------- /flags/flags/flags.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/flags/flags/flags.vcxproj.filters -------------------------------------------------------------------------------- /flags/flags/flags.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/flags/flags/flags.vcxproj.user -------------------------------------------------------------------------------- /flags/flags/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/flags/flags/stdafx.cpp -------------------------------------------------------------------------------- /flags/flags/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/flags/flags/stdafx.h -------------------------------------------------------------------------------- /flags/flags/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/flags/flags/targetver.h -------------------------------------------------------------------------------- /helloworld/helloworld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/helloworld/helloworld.sln -------------------------------------------------------------------------------- /helloworld/helloworld.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/helloworld/helloworld.suo -------------------------------------------------------------------------------- /helloworld/helloworld/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/helloworld/helloworld/ReadMe.txt -------------------------------------------------------------------------------- /helloworld/helloworld/helloworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/helloworld/helloworld/helloworld.cpp -------------------------------------------------------------------------------- /helloworld/helloworld/helloworld.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/helloworld/helloworld/helloworld.vcxproj -------------------------------------------------------------------------------- /helloworld/helloworld/helloworld.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/helloworld/helloworld/helloworld.vcxproj.filters -------------------------------------------------------------------------------- /helloworld/helloworld/helloworld.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/helloworld/helloworld/helloworld.vcxproj.user -------------------------------------------------------------------------------- /helloworld/helloworld/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/helloworld/helloworld/stdafx.cpp -------------------------------------------------------------------------------- /helloworld/helloworld/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/helloworld/helloworld/stdafx.h -------------------------------------------------------------------------------- /helloworld/helloworld/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/helloworld/helloworld/targetver.h -------------------------------------------------------------------------------- /hookidt/mydriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/hookidt/mydriver.c -------------------------------------------------------------------------------- /hookidt/mydriver.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/hookidt/mydriver.pdb -------------------------------------------------------------------------------- /hookidt/mydriver.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/hookidt/mydriver.sys -------------------------------------------------------------------------------- /hookidt/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/hookidt/sources -------------------------------------------------------------------------------- /hookmsr/mydriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/hookmsr/mydriver.c -------------------------------------------------------------------------------- /hookmsr/mydriver.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/hookmsr/mydriver.pdb -------------------------------------------------------------------------------- /hookmsr/mydriver.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/hookmsr/mydriver.sys -------------------------------------------------------------------------------- /hookmsr/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/hookmsr/sources -------------------------------------------------------------------------------- /hookssdt/mydriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/hookssdt/mydriver.c -------------------------------------------------------------------------------- /hookssdt/mydriver.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/hookssdt/mydriver.sys -------------------------------------------------------------------------------- /hookssdt/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/hookssdt/sources -------------------------------------------------------------------------------- /isdebuggerpresent/isdebuggerpresent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/isdebuggerpresent/isdebuggerpresent.sln -------------------------------------------------------------------------------- /isdebuggerpresent/isdebuggerpresent.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/isdebuggerpresent/isdebuggerpresent.suo -------------------------------------------------------------------------------- /isdebuggerpresent/isdebuggerpresent/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/isdebuggerpresent/isdebuggerpresent/ReadMe.txt -------------------------------------------------------------------------------- /isdebuggerpresent/isdebuggerpresent/isdebuggerpresent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/isdebuggerpresent/isdebuggerpresent/isdebuggerpresent.cpp -------------------------------------------------------------------------------- /isdebuggerpresent/isdebuggerpresent/isdebuggerpresent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/isdebuggerpresent/isdebuggerpresent/isdebuggerpresent.vcxproj -------------------------------------------------------------------------------- /isdebuggerpresent/isdebuggerpresent/isdebuggerpresent.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/isdebuggerpresent/isdebuggerpresent/isdebuggerpresent.vcxproj.filters -------------------------------------------------------------------------------- /isdebuggerpresent/isdebuggerpresent/isdebuggerpresent.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/isdebuggerpresent/isdebuggerpresent/isdebuggerpresent.vcxproj.user -------------------------------------------------------------------------------- /isdebuggerpresent/isdebuggerpresent/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/isdebuggerpresent/isdebuggerpresent/stdafx.cpp -------------------------------------------------------------------------------- /isdebuggerpresent/isdebuggerpresent/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/isdebuggerpresent/isdebuggerpresent/stdafx.h -------------------------------------------------------------------------------- /isdebuggerpresent/isdebuggerpresent/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/isdebuggerpresent/isdebuggerpresent/targetver.h -------------------------------------------------------------------------------- /kerneldebug/kerneldebug.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/kerneldebug/kerneldebug.sln -------------------------------------------------------------------------------- /kerneldebug/kerneldebug.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/kerneldebug/kerneldebug.suo -------------------------------------------------------------------------------- /kerneldebug/kerneldebug/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/kerneldebug/kerneldebug/ReadMe.txt -------------------------------------------------------------------------------- /kerneldebug/kerneldebug/kerneldebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/kerneldebug/kerneldebug/kerneldebug.cpp -------------------------------------------------------------------------------- /kerneldebug/kerneldebug/kerneldebug.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/kerneldebug/kerneldebug/kerneldebug.vcxproj -------------------------------------------------------------------------------- /kerneldebug/kerneldebug/kerneldebug.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/kerneldebug/kerneldebug/kerneldebug.vcxproj.filters -------------------------------------------------------------------------------- /kerneldebug/kerneldebug/kerneldebug.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/kerneldebug/kerneldebug/kerneldebug.vcxproj.user -------------------------------------------------------------------------------- /kerneldebug/kerneldebug/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/kerneldebug/kerneldebug/stdafx.cpp -------------------------------------------------------------------------------- /kerneldebug/kerneldebug/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/kerneldebug/kerneldebug/stdafx.h -------------------------------------------------------------------------------- /kerneldebug/kerneldebug/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/kerneldebug/kerneldebug/targetver.h -------------------------------------------------------------------------------- /linearsweep/linear_sweep.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/linearsweep/linear_sweep.sln -------------------------------------------------------------------------------- /linearsweep/linear_sweep.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/linearsweep/linear_sweep.suo -------------------------------------------------------------------------------- /linearsweep/linear_sweep/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/linearsweep/linear_sweep/ReadMe.txt -------------------------------------------------------------------------------- /linearsweep/linear_sweep/linear_sweep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/linearsweep/linear_sweep/linear_sweep.cpp -------------------------------------------------------------------------------- /linearsweep/linear_sweep/linear_sweep.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/linearsweep/linear_sweep/linear_sweep.vcxproj -------------------------------------------------------------------------------- /linearsweep/linear_sweep/linear_sweep.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/linearsweep/linear_sweep/linear_sweep.vcxproj.filters -------------------------------------------------------------------------------- /linearsweep/linear_sweep/linear_sweep.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/linearsweep/linear_sweep/linear_sweep.vcxproj.user -------------------------------------------------------------------------------- /linearsweep/linear_sweep/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/linearsweep/linear_sweep/stdafx.cpp -------------------------------------------------------------------------------- /linearsweep/linear_sweep/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/linearsweep/linear_sweep/stdafx.h -------------------------------------------------------------------------------- /linearsweep/linear_sweep/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/linearsweep/linear_sweep/targetver.h -------------------------------------------------------------------------------- /setwindowshookex/setwindowshookex.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/setwindowshookex/setwindowshookex.sln -------------------------------------------------------------------------------- /setwindowshookex/setwindowshookex.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/setwindowshookex/setwindowshookex.suo -------------------------------------------------------------------------------- /setwindowshookex/setwindowshookex/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/setwindowshookex/setwindowshookex/ReadMe.txt -------------------------------------------------------------------------------- /setwindowshookex/setwindowshookex/setwindowshookex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/setwindowshookex/setwindowshookex/setwindowshookex.cpp -------------------------------------------------------------------------------- /setwindowshookex/setwindowshookex/setwindowshookex.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/setwindowshookex/setwindowshookex/setwindowshookex.vcxproj -------------------------------------------------------------------------------- /setwindowshookex/setwindowshookex/setwindowshookex.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/setwindowshookex/setwindowshookex/setwindowshookex.vcxproj.filters -------------------------------------------------------------------------------- /setwindowshookex/setwindowshookex/setwindowshookex.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/setwindowshookex/setwindowshookex/setwindowshookex.vcxproj.user -------------------------------------------------------------------------------- /setwindowshookex/setwindowshookex/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/setwindowshookex/setwindowshookex/stdafx.cpp -------------------------------------------------------------------------------- /setwindowshookex/setwindowshookex/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/setwindowshookex/setwindowshookex/stdafx.h -------------------------------------------------------------------------------- /setwindowshookex/setwindowshookex/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proteansec/visual-studio-projects/HEAD/setwindowshookex/setwindowshookex/targetver.h --------------------------------------------------------------------------------