├── .gitignore ├── LICENSE ├── PEB-Recon.sln ├── PEB-Recon ├── PEB-Recon.cpp ├── PEB-Recon.vcxproj ├── PEB-Recon.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md ├── TEB-Recon ├── ReadMe.txt ├── TEB-Recon.cpp ├── TEB-Recon.vcxproj ├── TEB-Recon.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h └── WIN32-Recon ├── ReadMe.txt ├── WIN32-Recon.cpp ├── WIN32-Recon.vcxproj ├── WIN32-Recon.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/LICENSE -------------------------------------------------------------------------------- /PEB-Recon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/PEB-Recon.sln -------------------------------------------------------------------------------- /PEB-Recon/PEB-Recon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/PEB-Recon/PEB-Recon.cpp -------------------------------------------------------------------------------- /PEB-Recon/PEB-Recon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/PEB-Recon/PEB-Recon.vcxproj -------------------------------------------------------------------------------- /PEB-Recon/PEB-Recon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/PEB-Recon/PEB-Recon.vcxproj.filters -------------------------------------------------------------------------------- /PEB-Recon/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/PEB-Recon/ReadMe.txt -------------------------------------------------------------------------------- /PEB-Recon/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/PEB-Recon/stdafx.cpp -------------------------------------------------------------------------------- /PEB-Recon/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/PEB-Recon/stdafx.h -------------------------------------------------------------------------------- /PEB-Recon/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/PEB-Recon/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/README.md -------------------------------------------------------------------------------- /TEB-Recon/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/TEB-Recon/ReadMe.txt -------------------------------------------------------------------------------- /TEB-Recon/TEB-Recon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/TEB-Recon/TEB-Recon.cpp -------------------------------------------------------------------------------- /TEB-Recon/TEB-Recon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/TEB-Recon/TEB-Recon.vcxproj -------------------------------------------------------------------------------- /TEB-Recon/TEB-Recon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/TEB-Recon/TEB-Recon.vcxproj.filters -------------------------------------------------------------------------------- /TEB-Recon/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/TEB-Recon/stdafx.cpp -------------------------------------------------------------------------------- /TEB-Recon/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/TEB-Recon/stdafx.h -------------------------------------------------------------------------------- /TEB-Recon/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/TEB-Recon/targetver.h -------------------------------------------------------------------------------- /WIN32-Recon/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/WIN32-Recon/ReadMe.txt -------------------------------------------------------------------------------- /WIN32-Recon/WIN32-Recon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/WIN32-Recon/WIN32-Recon.cpp -------------------------------------------------------------------------------- /WIN32-Recon/WIN32-Recon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/WIN32-Recon/WIN32-Recon.vcxproj -------------------------------------------------------------------------------- /WIN32-Recon/WIN32-Recon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/WIN32-Recon/WIN32-Recon.vcxproj.filters -------------------------------------------------------------------------------- /WIN32-Recon/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/WIN32-Recon/stdafx.cpp -------------------------------------------------------------------------------- /WIN32-Recon/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/WIN32-Recon/stdafx.h -------------------------------------------------------------------------------- /WIN32-Recon/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killswitch-GUI/IsDebuggerPresent/HEAD/WIN32-Recon/targetver.h --------------------------------------------------------------------------------