├── .gitignore ├── LICENSE ├── README.md └── WindowsPENative ├── DLLLoader ├── DLLLoader.cpp ├── DLLLoader.vcxproj ├── DLLLoader.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── Project.txt ├── WindowsPENative.opensdf ├── WindowsPENative.sln ├── WindowsPENative ├── ReadMe.txt ├── WindowsPENative.cpp ├── WindowsPENative.vcxproj ├── WindowsPENative.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── WindowsPENativeDLL ├── ReadMe.txt ├── WindowsPENativeDLL.cpp ├── WindowsPENativeDLL.vcxproj ├── WindowsPENativeDLL.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── WindowsPENativeDLLTLSCallBack ├── ReadMe.txt ├── WindowsPENativeDLLTLSCallBack.cpp ├── WindowsPENativeDLLTLSCallBack.vcxproj ├── WindowsPENativeDLLTLSCallBack.vcxproj.filters ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h └── WindowsPENativeTLSCallBack ├── ReadMe.txt ├── WindowsPENativeTLSCallBack.cpp ├── WindowsPENativeTLSCallBack.vcxproj ├── WindowsPENativeTLSCallBack.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/README.md -------------------------------------------------------------------------------- /WindowsPENative/DLLLoader/DLLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/DLLLoader/DLLLoader.cpp -------------------------------------------------------------------------------- /WindowsPENative/DLLLoader/DLLLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/DLLLoader/DLLLoader.vcxproj -------------------------------------------------------------------------------- /WindowsPENative/DLLLoader/DLLLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/DLLLoader/DLLLoader.vcxproj.filters -------------------------------------------------------------------------------- /WindowsPENative/DLLLoader/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/DLLLoader/ReadMe.txt -------------------------------------------------------------------------------- /WindowsPENative/DLLLoader/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/DLLLoader/stdafx.cpp -------------------------------------------------------------------------------- /WindowsPENative/DLLLoader/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/DLLLoader/stdafx.h -------------------------------------------------------------------------------- /WindowsPENative/DLLLoader/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/DLLLoader/targetver.h -------------------------------------------------------------------------------- /WindowsPENative/Project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/Project.txt -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENative.opensdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENative.opensdf -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENative.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENative.sln -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENative/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENative/ReadMe.txt -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENative/WindowsPENative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENative/WindowsPENative.cpp -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENative/WindowsPENative.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENative/WindowsPENative.vcxproj -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENative/WindowsPENative.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENative/WindowsPENative.vcxproj.filters -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENative/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENative/stdafx.cpp -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENative/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENative/stdafx.h -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENative/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENative/targetver.h -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLL/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLL/ReadMe.txt -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLL/WindowsPENativeDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLL/WindowsPENativeDLL.cpp -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLL/WindowsPENativeDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLL/WindowsPENativeDLL.vcxproj -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLL/WindowsPENativeDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLL/WindowsPENativeDLL.vcxproj.filters -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLL/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLL/stdafx.cpp -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLL/stdafx.h -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLL/targetver.h -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLLTLSCallBack/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLLTLSCallBack/ReadMe.txt -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLLTLSCallBack/WindowsPENativeDLLTLSCallBack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLLTLSCallBack/WindowsPENativeDLLTLSCallBack.cpp -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLLTLSCallBack/WindowsPENativeDLLTLSCallBack.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLLTLSCallBack/WindowsPENativeDLLTLSCallBack.vcxproj -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLLTLSCallBack/WindowsPENativeDLLTLSCallBack.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLLTLSCallBack/WindowsPENativeDLLTLSCallBack.vcxproj.filters -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLLTLSCallBack/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLLTLSCallBack/dllmain.cpp -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLLTLSCallBack/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLLTLSCallBack/stdafx.cpp -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLLTLSCallBack/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLLTLSCallBack/stdafx.h -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeDLLTLSCallBack/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeDLLTLSCallBack/targetver.h -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeTLSCallBack/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeTLSCallBack/ReadMe.txt -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeTLSCallBack/WindowsPENativeTLSCallBack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeTLSCallBack/WindowsPENativeTLSCallBack.cpp -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeTLSCallBack/WindowsPENativeTLSCallBack.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeTLSCallBack/WindowsPENativeTLSCallBack.vcxproj -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeTLSCallBack/WindowsPENativeTLSCallBack.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeTLSCallBack/WindowsPENativeTLSCallBack.vcxproj.filters -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeTLSCallBack/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeTLSCallBack/stdafx.cpp -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeTLSCallBack/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeTLSCallBack/stdafx.h -------------------------------------------------------------------------------- /WindowsPENative/WindowsPENativeTLSCallBack/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nccgroup/firstexecution/HEAD/WindowsPENative/WindowsPENativeTLSCallBack/targetver.h --------------------------------------------------------------------------------