├── DD.Plugin.CheckHeapMemory ├── DD.Plugin.CheckHeapMemory.vcxproj ├── DD.Plugin.CheckHeapMemory.vcxproj.filters ├── DD.Plugin.CheckHeapMemory.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.CheckRemoteDebuggerPresent ├── DD.Plugin.CheckRemoteDebuggerPresent.vcxproj ├── DD.Plugin.CheckRemoteDebuggerPresent.vcxproj.filters ├── DD.Plugin.CheckRemoteDebuggerPresent.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.DebugObject ├── DD.Plugin.DebugObject.vcxproj ├── DD.Plugin.DebugObject.vcxproj.filters ├── DD.Plugin.DebugObject.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.FindBadDrivers ├── DD.Plugin.FindBadDrivers.vcxproj ├── DD.Plugin.FindBadDrivers.vcxproj.filters ├── DD.Plugin.FindBadDrivers.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.FindBadProcesses ├── DD.Plugin.FindBadProcesses.vcxproj ├── DD.Plugin.FindBadProcesses.vcxproj.filters ├── DD.Plugin.FindBadProcesses.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.FindBadWindows ├── DD.Plugin.FindBadWindows.vcxproj ├── DD.Plugin.FindBadWindows.vcxproj.filters ├── DD.Plugin.FindBadWindows.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.HardwareBreakpoint ├── DD.Plugin.HardwareBreakpoint.vcxproj ├── DD.Plugin.HardwareBreakpoint.vcxproj.filters ├── DD.Plugin.HardwareBreakpoint.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.IsDebuggerPresent ├── DD.Plugin.IsDebuggerPresent.vcxproj ├── DD.Plugin.IsDebuggerPresent.vcxproj.filters ├── DD.Plugin.IsDebuggerPresent.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.MemoryBreakpoint ├── DD.Plugin.MemoryBreakpoint.vcxproj ├── DD.Plugin.MemoryBreakpoint.vcxproj.filters ├── DD.Plugin.MemoryBreakpoint.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.NTQuerySystemInformation ├── DD.Plugin.NTQuerySystemInformation.vcxproj ├── DD.Plugin.NTQuerySystemInformation.vcxproj.filters ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.NTYieldExecution ├── DD.Plugin.NTYieldExecution.vcxproj ├── DD.Plugin.NTYieldExecution.vcxproj.filters ├── DD.Plugin.NTYieldExecution.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.NtSetDebugFilterState ├── DD.Plugin.NtSetDebugFilterState.vcxproj ├── DD.Plugin.NtSetDebugFilterState.vcxproj.filters ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.OpenCSRSS ├── DD.Plugin.OpenCSRSS.vcxproj ├── DD.Plugin.OpenCSRSS.vcxproj.filters ├── DD.Plugin.OpenCSRSS.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.OutputDebugString ├── DD.Plugin.OutputDebugString.vcxproj ├── DD.Plugin.OutputDebugString.vcxproj.filters ├── DD.Plugin.OutputDebugString.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.PEBDebugFlag ├── DD.Plugin.PEBDebugFlag.vcxproj ├── DD.Plugin.PEBDebugFlag.vcxproj.filters ├── DD.Plugin.PEBDebugFlag.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.PEBGlobalFlags ├── DD.Plugin.PEBGlobalFlags.vcxproj ├── DD.Plugin.PEBGlobalFlags.vcxproj.filters ├── DD.Plugin.PEBGlobalFlags.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.PEBProcHeapFlag ├── DD.Plugin.PEBProcHeapFlag.vcxproj ├── DD.Plugin.PEBProcHeapFlag.vcxproj.filters ├── DD.Plugin.PEBProcHeapFlag.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.ParentProcess ├── DD.Plugin.ParentProcess.vcxproj ├── DD.Plugin.ParentProcess.vcxproj.filters ├── DD.Plugin.ParentProcess.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.ProcessDebugFlag ├── DD.Plugin.ProcessDebugFlag.vcxproj ├── DD.Plugin.ProcessDebugFlag.vcxproj.filters ├── DD.Plugin.ProcessDebugFlag.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DD.Plugin.UnhandledException ├── DD.Plugin.UnhandledException.vcxproj ├── DD.Plugin.UnhandledException.vcxproj.filters ├── DD.Plugin.UnhandledException.vcxproj.user ├── DLLMain.cpp └── DLLMain.h ├── DebugDetector.sln ├── DebugDetector.suo ├── DebugDetector ├── DDMain.cpp ├── DDMain.h ├── DebugDetector.aps ├── DebugDetector.rc ├── DebugDetector.vcxproj ├── DebugDetector.vcxproj.filters ├── DebugDetector.vcxproj.user └── resource.h ├── README.md └── Release ├── DD.Plugin.CheckHeapMemory.dll ├── DD.Plugin.CheckRemoteDebuggerPresent.dll ├── DD.Plugin.DebugObject.dll ├── DD.Plugin.FindBadDrivers.dll ├── DD.Plugin.FindBadProcesses.dll ├── DD.Plugin.FindBadWindows.dll ├── DD.Plugin.HardwareBreakpoint.dll ├── DD.Plugin.IsDebuggerPresent.dll ├── DD.Plugin.MemoryBreakpoint.dll ├── DD.Plugin.NTQuerySystemInformation.dll ├── DD.Plugin.NTYieldExecution.dll ├── DD.Plugin.NtSetDebugFilterState.dll ├── DD.Plugin.OpenCSRSS.dll ├── DD.Plugin.OutputDebugString.dll ├── DD.Plugin.PEBDebugFlag.dll ├── DD.Plugin.PEBGlobalFlags.dll ├── DD.Plugin.PEBProcHeapFlag.dll ├── DD.Plugin.ParentProcess.dll ├── DD.Plugin.ProcessDebugFlag.dll ├── DD.Plugin.UnhandledException.dll └── DebugDetector.exe /DD.Plugin.CheckHeapMemory/DD.Plugin.CheckHeapMemory.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.CheckHeapMemory/DD.Plugin.CheckHeapMemory.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.CheckHeapMemory/DD.Plugin.CheckHeapMemory.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.CheckHeapMemory/DD.Plugin.CheckHeapMemory.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.CheckHeapMemory/DD.Plugin.CheckHeapMemory.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.CheckHeapMemory/DD.Plugin.CheckHeapMemory.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.CheckHeapMemory/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.CheckHeapMemory/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.CheckHeapMemory/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.CheckHeapMemory/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.CheckRemoteDebuggerPresent/DD.Plugin.CheckRemoteDebuggerPresent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.CheckRemoteDebuggerPresent/DD.Plugin.CheckRemoteDebuggerPresent.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.CheckRemoteDebuggerPresent/DD.Plugin.CheckRemoteDebuggerPresent.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.CheckRemoteDebuggerPresent/DD.Plugin.CheckRemoteDebuggerPresent.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.CheckRemoteDebuggerPresent/DD.Plugin.CheckRemoteDebuggerPresent.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.CheckRemoteDebuggerPresent/DD.Plugin.CheckRemoteDebuggerPresent.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.CheckRemoteDebuggerPresent/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.CheckRemoteDebuggerPresent/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.CheckRemoteDebuggerPresent/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.CheckRemoteDebuggerPresent/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.DebugObject/DD.Plugin.DebugObject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.DebugObject/DD.Plugin.DebugObject.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.DebugObject/DD.Plugin.DebugObject.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.DebugObject/DD.Plugin.DebugObject.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.DebugObject/DD.Plugin.DebugObject.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.DebugObject/DD.Plugin.DebugObject.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.DebugObject/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.DebugObject/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.DebugObject/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.DebugObject/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.FindBadDrivers/DD.Plugin.FindBadDrivers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadDrivers/DD.Plugin.FindBadDrivers.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.FindBadDrivers/DD.Plugin.FindBadDrivers.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadDrivers/DD.Plugin.FindBadDrivers.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.FindBadDrivers/DD.Plugin.FindBadDrivers.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadDrivers/DD.Plugin.FindBadDrivers.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.FindBadDrivers/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadDrivers/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.FindBadDrivers/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadDrivers/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.FindBadProcesses/DD.Plugin.FindBadProcesses.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadProcesses/DD.Plugin.FindBadProcesses.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.FindBadProcesses/DD.Plugin.FindBadProcesses.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadProcesses/DD.Plugin.FindBadProcesses.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.FindBadProcesses/DD.Plugin.FindBadProcesses.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadProcesses/DD.Plugin.FindBadProcesses.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.FindBadProcesses/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadProcesses/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.FindBadProcesses/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadProcesses/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.FindBadWindows/DD.Plugin.FindBadWindows.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadWindows/DD.Plugin.FindBadWindows.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.FindBadWindows/DD.Plugin.FindBadWindows.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadWindows/DD.Plugin.FindBadWindows.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.FindBadWindows/DD.Plugin.FindBadWindows.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadWindows/DD.Plugin.FindBadWindows.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.FindBadWindows/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadWindows/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.FindBadWindows/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.FindBadWindows/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.HardwareBreakpoint/DD.Plugin.HardwareBreakpoint.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.HardwareBreakpoint/DD.Plugin.HardwareBreakpoint.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.HardwareBreakpoint/DD.Plugin.HardwareBreakpoint.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.HardwareBreakpoint/DD.Plugin.HardwareBreakpoint.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.HardwareBreakpoint/DD.Plugin.HardwareBreakpoint.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.HardwareBreakpoint/DD.Plugin.HardwareBreakpoint.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.HardwareBreakpoint/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.HardwareBreakpoint/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.HardwareBreakpoint/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.HardwareBreakpoint/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.IsDebuggerPresent/DD.Plugin.IsDebuggerPresent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.IsDebuggerPresent/DD.Plugin.IsDebuggerPresent.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.IsDebuggerPresent/DD.Plugin.IsDebuggerPresent.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.IsDebuggerPresent/DD.Plugin.IsDebuggerPresent.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.IsDebuggerPresent/DD.Plugin.IsDebuggerPresent.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.IsDebuggerPresent/DD.Plugin.IsDebuggerPresent.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.IsDebuggerPresent/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.IsDebuggerPresent/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.IsDebuggerPresent/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.IsDebuggerPresent/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.MemoryBreakpoint/DD.Plugin.MemoryBreakpoint.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.MemoryBreakpoint/DD.Plugin.MemoryBreakpoint.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.MemoryBreakpoint/DD.Plugin.MemoryBreakpoint.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.MemoryBreakpoint/DD.Plugin.MemoryBreakpoint.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.MemoryBreakpoint/DD.Plugin.MemoryBreakpoint.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.MemoryBreakpoint/DD.Plugin.MemoryBreakpoint.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.MemoryBreakpoint/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.MemoryBreakpoint/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.MemoryBreakpoint/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.MemoryBreakpoint/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.NTQuerySystemInformation/DD.Plugin.NTQuerySystemInformation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NTQuerySystemInformation/DD.Plugin.NTQuerySystemInformation.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.NTQuerySystemInformation/DD.Plugin.NTQuerySystemInformation.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NTQuerySystemInformation/DD.Plugin.NTQuerySystemInformation.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.NTQuerySystemInformation/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NTQuerySystemInformation/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.NTQuerySystemInformation/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NTQuerySystemInformation/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.NTYieldExecution/DD.Plugin.NTYieldExecution.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NTYieldExecution/DD.Plugin.NTYieldExecution.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.NTYieldExecution/DD.Plugin.NTYieldExecution.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NTYieldExecution/DD.Plugin.NTYieldExecution.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.NTYieldExecution/DD.Plugin.NTYieldExecution.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NTYieldExecution/DD.Plugin.NTYieldExecution.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.NTYieldExecution/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NTYieldExecution/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.NTYieldExecution/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NTYieldExecution/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.NtSetDebugFilterState/DD.Plugin.NtSetDebugFilterState.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NtSetDebugFilterState/DD.Plugin.NtSetDebugFilterState.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.NtSetDebugFilterState/DD.Plugin.NtSetDebugFilterState.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NtSetDebugFilterState/DD.Plugin.NtSetDebugFilterState.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.NtSetDebugFilterState/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NtSetDebugFilterState/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.NtSetDebugFilterState/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.NtSetDebugFilterState/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.OpenCSRSS/DD.Plugin.OpenCSRSS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.OpenCSRSS/DD.Plugin.OpenCSRSS.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.OpenCSRSS/DD.Plugin.OpenCSRSS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.OpenCSRSS/DD.Plugin.OpenCSRSS.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.OpenCSRSS/DD.Plugin.OpenCSRSS.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.OpenCSRSS/DD.Plugin.OpenCSRSS.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.OpenCSRSS/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.OpenCSRSS/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.OpenCSRSS/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.OpenCSRSS/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.OutputDebugString/DD.Plugin.OutputDebugString.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.OutputDebugString/DD.Plugin.OutputDebugString.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.OutputDebugString/DD.Plugin.OutputDebugString.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.OutputDebugString/DD.Plugin.OutputDebugString.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.OutputDebugString/DD.Plugin.OutputDebugString.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.OutputDebugString/DD.Plugin.OutputDebugString.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.OutputDebugString/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.OutputDebugString/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.OutputDebugString/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.OutputDebugString/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.PEBDebugFlag/DD.Plugin.PEBDebugFlag.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBDebugFlag/DD.Plugin.PEBDebugFlag.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.PEBDebugFlag/DD.Plugin.PEBDebugFlag.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBDebugFlag/DD.Plugin.PEBDebugFlag.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.PEBDebugFlag/DD.Plugin.PEBDebugFlag.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBDebugFlag/DD.Plugin.PEBDebugFlag.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.PEBDebugFlag/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBDebugFlag/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.PEBDebugFlag/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBDebugFlag/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.PEBGlobalFlags/DD.Plugin.PEBGlobalFlags.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBGlobalFlags/DD.Plugin.PEBGlobalFlags.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.PEBGlobalFlags/DD.Plugin.PEBGlobalFlags.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBGlobalFlags/DD.Plugin.PEBGlobalFlags.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.PEBGlobalFlags/DD.Plugin.PEBGlobalFlags.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBGlobalFlags/DD.Plugin.PEBGlobalFlags.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.PEBGlobalFlags/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBGlobalFlags/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.PEBGlobalFlags/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBGlobalFlags/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.PEBProcHeapFlag/DD.Plugin.PEBProcHeapFlag.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBProcHeapFlag/DD.Plugin.PEBProcHeapFlag.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.PEBProcHeapFlag/DD.Plugin.PEBProcHeapFlag.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBProcHeapFlag/DD.Plugin.PEBProcHeapFlag.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.PEBProcHeapFlag/DD.Plugin.PEBProcHeapFlag.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBProcHeapFlag/DD.Plugin.PEBProcHeapFlag.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.PEBProcHeapFlag/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBProcHeapFlag/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.PEBProcHeapFlag/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.PEBProcHeapFlag/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.ParentProcess/DD.Plugin.ParentProcess.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.ParentProcess/DD.Plugin.ParentProcess.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.ParentProcess/DD.Plugin.ParentProcess.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.ParentProcess/DD.Plugin.ParentProcess.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.ParentProcess/DD.Plugin.ParentProcess.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.ParentProcess/DD.Plugin.ParentProcess.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.ParentProcess/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.ParentProcess/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.ParentProcess/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.ParentProcess/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.ProcessDebugFlag/DD.Plugin.ProcessDebugFlag.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.ProcessDebugFlag/DD.Plugin.ProcessDebugFlag.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.ProcessDebugFlag/DD.Plugin.ProcessDebugFlag.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.ProcessDebugFlag/DD.Plugin.ProcessDebugFlag.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.ProcessDebugFlag/DD.Plugin.ProcessDebugFlag.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.ProcessDebugFlag/DD.Plugin.ProcessDebugFlag.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.ProcessDebugFlag/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.ProcessDebugFlag/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.ProcessDebugFlag/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.ProcessDebugFlag/DLLMain.h -------------------------------------------------------------------------------- /DD.Plugin.UnhandledException/DD.Plugin.UnhandledException.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.UnhandledException/DD.Plugin.UnhandledException.vcxproj -------------------------------------------------------------------------------- /DD.Plugin.UnhandledException/DD.Plugin.UnhandledException.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.UnhandledException/DD.Plugin.UnhandledException.vcxproj.filters -------------------------------------------------------------------------------- /DD.Plugin.UnhandledException/DD.Plugin.UnhandledException.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.UnhandledException/DD.Plugin.UnhandledException.vcxproj.user -------------------------------------------------------------------------------- /DD.Plugin.UnhandledException/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.UnhandledException/DLLMain.cpp -------------------------------------------------------------------------------- /DD.Plugin.UnhandledException/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DD.Plugin.UnhandledException/DLLMain.h -------------------------------------------------------------------------------- /DebugDetector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DebugDetector.sln -------------------------------------------------------------------------------- /DebugDetector.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DebugDetector.suo -------------------------------------------------------------------------------- /DebugDetector/DDMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DebugDetector/DDMain.cpp -------------------------------------------------------------------------------- /DebugDetector/DDMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DebugDetector/DDMain.h -------------------------------------------------------------------------------- /DebugDetector/DebugDetector.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DebugDetector/DebugDetector.aps -------------------------------------------------------------------------------- /DebugDetector/DebugDetector.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DebugDetector/DebugDetector.rc -------------------------------------------------------------------------------- /DebugDetector/DebugDetector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DebugDetector/DebugDetector.vcxproj -------------------------------------------------------------------------------- /DebugDetector/DebugDetector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DebugDetector/DebugDetector.vcxproj.filters -------------------------------------------------------------------------------- /DebugDetector/DebugDetector.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DebugDetector/DebugDetector.vcxproj.user -------------------------------------------------------------------------------- /DebugDetector/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/DebugDetector/resource.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/README.md -------------------------------------------------------------------------------- /Release/DD.Plugin.CheckHeapMemory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.CheckHeapMemory.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.CheckRemoteDebuggerPresent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.CheckRemoteDebuggerPresent.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.DebugObject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.DebugObject.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.FindBadDrivers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.FindBadDrivers.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.FindBadProcesses.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.FindBadProcesses.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.FindBadWindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.FindBadWindows.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.HardwareBreakpoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.HardwareBreakpoint.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.IsDebuggerPresent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.IsDebuggerPresent.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.MemoryBreakpoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.MemoryBreakpoint.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.NTQuerySystemInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.NTQuerySystemInformation.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.NTYieldExecution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.NTYieldExecution.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.NtSetDebugFilterState.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.NtSetDebugFilterState.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.OpenCSRSS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.OpenCSRSS.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.OutputDebugString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.OutputDebugString.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.PEBDebugFlag.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.PEBDebugFlag.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.PEBGlobalFlags.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.PEBGlobalFlags.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.PEBProcHeapFlag.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.PEBProcHeapFlag.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.ParentProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.ParentProcess.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.ProcessDebugFlag.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.ProcessDebugFlag.dll -------------------------------------------------------------------------------- /Release/DD.Plugin.UnhandledException.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DD.Plugin.UnhandledException.dll -------------------------------------------------------------------------------- /Release/DebugDetector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zer0fl4g/DebugDetector/HEAD/Release/DebugDetector.exe --------------------------------------------------------------------------------