├── API检测 ├── API检测.cpp ├── API检测.vcxproj ├── API检测.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── BeingDebugged.sln ├── BeingDebugged ├── BeingDebugged.cpp ├── BeingDebugged.vcxproj ├── BeingDebugged.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── CheckSum ├── CheckSum.cpp ├── CheckSum.vcxproj ├── CheckSum.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── CreateProcess ├── CreateProcess.cpp ├── CreateProcess.vcxproj ├── CreateProcess.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── DebugActiveProcess ├── DebugActiveProcess.cpp ├── DebugActiveProcess.vcxproj ├── DebugActiveProcess.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── EnumProcess ├── EnumProcess.cpp ├── EnumProcess.vcxproj ├── EnumProcess.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── Explorer ├── Explorer.cpp ├── Explorer.vcxproj ├── Explorer.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── FindWindow ├── FindWindow.cpp ├── FindWindow.vcxproj ├── FindWindow.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── HardwareBreakPoints ├── HardwareBreakPoints.cpp ├── HardwareBreakPoints.vcxproj ├── HardwareBreakPoints.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── INT 2D ├── INT 2D.cpp ├── INT 2D.vcxproj ├── INT 2D.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NtGlobalFlag ├── NtGlobalFlag.cpp ├── NtGlobalFlag.vcxproj ├── NtGlobalFlag.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NtQqueryObject ├── NtQqueryObject.cpp ├── NtQqueryObject.vcxproj ├── NtQqueryObject.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NtQueryInformationProcess ├── NtQueryInformationProcess.cpp ├── NtQueryInformationProcess.vcxproj ├── NtQueryInformationProcess.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── NtQuerySystemInformation ├── NtQuerySystemInformation.cpp ├── NtQuerySystemInformation.vcxproj ├── NtQuerySystemInformation.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── POP SS ├── POP SS.cpp ├── POP SS.vcxproj ├── POP SS.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── QueryPerformanceCounter ├── QueryPerformanceCounter.cpp ├── QueryPerformanceCounter.vcxproj ├── QueryPerformanceCounter.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── RDTSC ├── RDTSC.cpp ├── RDTSC.vcxproj ├── RDTSC.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md ├── REP_CALL ├── REP_CALL.cpp ├── REP_CALL.vcxproj ├── REP_CALL.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── Registry ├── ReadMe.txt ├── Registry.cpp ├── Registry.vcxproj ├── Registry.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── SEH ├── ReadMe.txt ├── SEH.cpp ├── SEH.vcxproj ├── SEH.vcxproj.filters ├── SEH.vcxproj.user ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── STARTUPINFO ├── ReadMe.txt ├── STARTUPINFO.cpp ├── STARTUPINFO.vcxproj ├── STARTUPINFO.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── SeDebugPrivilege ├── ReadMe.txt ├── SeDebugPrivilege.cpp ├── SeDebugPrivilege.vcxproj ├── SeDebugPrivilege.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── SetUnhandledExceptionFilter ├── ReadMe.txt ├── SetUnhandledExceptionFilter.cpp ├── SetUnhandledExceptionFilter.vcxproj ├── SetUnhandledExceptionFilter.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── SingleStep ├── ReadMe.txt ├── SingleStep.cpp ├── SingleStep.vcxproj ├── SingleStep.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h └── ZwSetInformationThread ├── ReadMe.txt ├── ZwSetInformationThread.cpp ├── ZwSetInformationThread.vcxproj ├── ZwSetInformationThread.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h /API检测/API检测.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/API检测/API检测.cpp -------------------------------------------------------------------------------- /API检测/API检测.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/API检测/API检测.vcxproj -------------------------------------------------------------------------------- /API检测/API检测.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/API检测/API检测.vcxproj.filters -------------------------------------------------------------------------------- /API检测/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/API检测/ReadMe.txt -------------------------------------------------------------------------------- /API检测/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/API检测/stdafx.cpp -------------------------------------------------------------------------------- /API检测/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/API检测/stdafx.h -------------------------------------------------------------------------------- /API检测/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/API检测/targetver.h -------------------------------------------------------------------------------- /BeingDebugged.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/BeingDebugged.sln -------------------------------------------------------------------------------- /BeingDebugged/BeingDebugged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/BeingDebugged/BeingDebugged.cpp -------------------------------------------------------------------------------- /BeingDebugged/BeingDebugged.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/BeingDebugged/BeingDebugged.vcxproj -------------------------------------------------------------------------------- /BeingDebugged/BeingDebugged.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/BeingDebugged/BeingDebugged.vcxproj.filters -------------------------------------------------------------------------------- /BeingDebugged/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/BeingDebugged/ReadMe.txt -------------------------------------------------------------------------------- /BeingDebugged/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/BeingDebugged/stdafx.cpp -------------------------------------------------------------------------------- /BeingDebugged/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/BeingDebugged/stdafx.h -------------------------------------------------------------------------------- /BeingDebugged/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/BeingDebugged/targetver.h -------------------------------------------------------------------------------- /CheckSum/CheckSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CheckSum/CheckSum.cpp -------------------------------------------------------------------------------- /CheckSum/CheckSum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CheckSum/CheckSum.vcxproj -------------------------------------------------------------------------------- /CheckSum/CheckSum.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CheckSum/CheckSum.vcxproj.filters -------------------------------------------------------------------------------- /CheckSum/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CheckSum/ReadMe.txt -------------------------------------------------------------------------------- /CheckSum/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CheckSum/stdafx.cpp -------------------------------------------------------------------------------- /CheckSum/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CheckSum/stdafx.h -------------------------------------------------------------------------------- /CheckSum/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CheckSum/targetver.h -------------------------------------------------------------------------------- /CreateProcess/CreateProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CreateProcess/CreateProcess.cpp -------------------------------------------------------------------------------- /CreateProcess/CreateProcess.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CreateProcess/CreateProcess.vcxproj -------------------------------------------------------------------------------- /CreateProcess/CreateProcess.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CreateProcess/CreateProcess.vcxproj.filters -------------------------------------------------------------------------------- /CreateProcess/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CreateProcess/ReadMe.txt -------------------------------------------------------------------------------- /CreateProcess/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CreateProcess/stdafx.cpp -------------------------------------------------------------------------------- /CreateProcess/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CreateProcess/stdafx.h -------------------------------------------------------------------------------- /CreateProcess/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/CreateProcess/targetver.h -------------------------------------------------------------------------------- /DebugActiveProcess/DebugActiveProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/DebugActiveProcess/DebugActiveProcess.cpp -------------------------------------------------------------------------------- /DebugActiveProcess/DebugActiveProcess.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/DebugActiveProcess/DebugActiveProcess.vcxproj -------------------------------------------------------------------------------- /DebugActiveProcess/DebugActiveProcess.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/DebugActiveProcess/DebugActiveProcess.vcxproj.filters -------------------------------------------------------------------------------- /DebugActiveProcess/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/DebugActiveProcess/ReadMe.txt -------------------------------------------------------------------------------- /DebugActiveProcess/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/DebugActiveProcess/stdafx.cpp -------------------------------------------------------------------------------- /DebugActiveProcess/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/DebugActiveProcess/stdafx.h -------------------------------------------------------------------------------- /DebugActiveProcess/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/DebugActiveProcess/targetver.h -------------------------------------------------------------------------------- /EnumProcess/EnumProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/EnumProcess/EnumProcess.cpp -------------------------------------------------------------------------------- /EnumProcess/EnumProcess.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/EnumProcess/EnumProcess.vcxproj -------------------------------------------------------------------------------- /EnumProcess/EnumProcess.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/EnumProcess/EnumProcess.vcxproj.filters -------------------------------------------------------------------------------- /EnumProcess/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/EnumProcess/ReadMe.txt -------------------------------------------------------------------------------- /EnumProcess/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/EnumProcess/stdafx.cpp -------------------------------------------------------------------------------- /EnumProcess/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/EnumProcess/stdafx.h -------------------------------------------------------------------------------- /EnumProcess/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/EnumProcess/targetver.h -------------------------------------------------------------------------------- /Explorer/Explorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Explorer/Explorer.cpp -------------------------------------------------------------------------------- /Explorer/Explorer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Explorer/Explorer.vcxproj -------------------------------------------------------------------------------- /Explorer/Explorer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Explorer/Explorer.vcxproj.filters -------------------------------------------------------------------------------- /Explorer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Explorer/ReadMe.txt -------------------------------------------------------------------------------- /Explorer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Explorer/stdafx.cpp -------------------------------------------------------------------------------- /Explorer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Explorer/stdafx.h -------------------------------------------------------------------------------- /Explorer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Explorer/targetver.h -------------------------------------------------------------------------------- /FindWindow/FindWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/FindWindow/FindWindow.cpp -------------------------------------------------------------------------------- /FindWindow/FindWindow.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/FindWindow/FindWindow.vcxproj -------------------------------------------------------------------------------- /FindWindow/FindWindow.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/FindWindow/FindWindow.vcxproj.filters -------------------------------------------------------------------------------- /FindWindow/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/FindWindow/ReadMe.txt -------------------------------------------------------------------------------- /FindWindow/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/FindWindow/stdafx.cpp -------------------------------------------------------------------------------- /FindWindow/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/FindWindow/stdafx.h -------------------------------------------------------------------------------- /FindWindow/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/FindWindow/targetver.h -------------------------------------------------------------------------------- /HardwareBreakPoints/HardwareBreakPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/HardwareBreakPoints/HardwareBreakPoints.cpp -------------------------------------------------------------------------------- /HardwareBreakPoints/HardwareBreakPoints.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/HardwareBreakPoints/HardwareBreakPoints.vcxproj -------------------------------------------------------------------------------- /HardwareBreakPoints/HardwareBreakPoints.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/HardwareBreakPoints/HardwareBreakPoints.vcxproj.filters -------------------------------------------------------------------------------- /HardwareBreakPoints/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/HardwareBreakPoints/ReadMe.txt -------------------------------------------------------------------------------- /HardwareBreakPoints/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/HardwareBreakPoints/stdafx.cpp -------------------------------------------------------------------------------- /HardwareBreakPoints/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/HardwareBreakPoints/stdafx.h -------------------------------------------------------------------------------- /HardwareBreakPoints/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/HardwareBreakPoints/targetver.h -------------------------------------------------------------------------------- /INT 2D/INT 2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/INT 2D/INT 2D.cpp -------------------------------------------------------------------------------- /INT 2D/INT 2D.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/INT 2D/INT 2D.vcxproj -------------------------------------------------------------------------------- /INT 2D/INT 2D.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/INT 2D/INT 2D.vcxproj.filters -------------------------------------------------------------------------------- /INT 2D/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/INT 2D/ReadMe.txt -------------------------------------------------------------------------------- /INT 2D/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/INT 2D/stdafx.cpp -------------------------------------------------------------------------------- /INT 2D/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/INT 2D/stdafx.h -------------------------------------------------------------------------------- /INT 2D/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/INT 2D/targetver.h -------------------------------------------------------------------------------- /NtGlobalFlag/NtGlobalFlag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtGlobalFlag/NtGlobalFlag.cpp -------------------------------------------------------------------------------- /NtGlobalFlag/NtGlobalFlag.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtGlobalFlag/NtGlobalFlag.vcxproj -------------------------------------------------------------------------------- /NtGlobalFlag/NtGlobalFlag.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtGlobalFlag/NtGlobalFlag.vcxproj.filters -------------------------------------------------------------------------------- /NtGlobalFlag/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtGlobalFlag/ReadMe.txt -------------------------------------------------------------------------------- /NtGlobalFlag/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtGlobalFlag/stdafx.cpp -------------------------------------------------------------------------------- /NtGlobalFlag/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtGlobalFlag/stdafx.h -------------------------------------------------------------------------------- /NtGlobalFlag/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtGlobalFlag/targetver.h -------------------------------------------------------------------------------- /NtQqueryObject/NtQqueryObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQqueryObject/NtQqueryObject.cpp -------------------------------------------------------------------------------- /NtQqueryObject/NtQqueryObject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQqueryObject/NtQqueryObject.vcxproj -------------------------------------------------------------------------------- /NtQqueryObject/NtQqueryObject.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQqueryObject/NtQqueryObject.vcxproj.filters -------------------------------------------------------------------------------- /NtQqueryObject/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQqueryObject/ReadMe.txt -------------------------------------------------------------------------------- /NtQqueryObject/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQqueryObject/stdafx.cpp -------------------------------------------------------------------------------- /NtQqueryObject/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQqueryObject/stdafx.h -------------------------------------------------------------------------------- /NtQqueryObject/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQqueryObject/targetver.h -------------------------------------------------------------------------------- /NtQueryInformationProcess/NtQueryInformationProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQueryInformationProcess/NtQueryInformationProcess.cpp -------------------------------------------------------------------------------- /NtQueryInformationProcess/NtQueryInformationProcess.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQueryInformationProcess/NtQueryInformationProcess.vcxproj -------------------------------------------------------------------------------- /NtQueryInformationProcess/NtQueryInformationProcess.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQueryInformationProcess/NtQueryInformationProcess.vcxproj.filters -------------------------------------------------------------------------------- /NtQueryInformationProcess/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQueryInformationProcess/ReadMe.txt -------------------------------------------------------------------------------- /NtQueryInformationProcess/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQueryInformationProcess/stdafx.cpp -------------------------------------------------------------------------------- /NtQueryInformationProcess/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQueryInformationProcess/stdafx.h -------------------------------------------------------------------------------- /NtQueryInformationProcess/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQueryInformationProcess/targetver.h -------------------------------------------------------------------------------- /NtQuerySystemInformation/NtQuerySystemInformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQuerySystemInformation/NtQuerySystemInformation.cpp -------------------------------------------------------------------------------- /NtQuerySystemInformation/NtQuerySystemInformation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQuerySystemInformation/NtQuerySystemInformation.vcxproj -------------------------------------------------------------------------------- /NtQuerySystemInformation/NtQuerySystemInformation.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQuerySystemInformation/NtQuerySystemInformation.vcxproj.filters -------------------------------------------------------------------------------- /NtQuerySystemInformation/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQuerySystemInformation/ReadMe.txt -------------------------------------------------------------------------------- /NtQuerySystemInformation/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQuerySystemInformation/stdafx.cpp -------------------------------------------------------------------------------- /NtQuerySystemInformation/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQuerySystemInformation/stdafx.h -------------------------------------------------------------------------------- /NtQuerySystemInformation/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/NtQuerySystemInformation/targetver.h -------------------------------------------------------------------------------- /POP SS/POP SS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/POP SS/POP SS.cpp -------------------------------------------------------------------------------- /POP SS/POP SS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/POP SS/POP SS.vcxproj -------------------------------------------------------------------------------- /POP SS/POP SS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/POP SS/POP SS.vcxproj.filters -------------------------------------------------------------------------------- /POP SS/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/POP SS/ReadMe.txt -------------------------------------------------------------------------------- /POP SS/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/POP SS/stdafx.cpp -------------------------------------------------------------------------------- /POP SS/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/POP SS/stdafx.h -------------------------------------------------------------------------------- /POP SS/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/POP SS/targetver.h -------------------------------------------------------------------------------- /QueryPerformanceCounter/QueryPerformanceCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/QueryPerformanceCounter/QueryPerformanceCounter.cpp -------------------------------------------------------------------------------- /QueryPerformanceCounter/QueryPerformanceCounter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/QueryPerformanceCounter/QueryPerformanceCounter.vcxproj -------------------------------------------------------------------------------- /QueryPerformanceCounter/QueryPerformanceCounter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/QueryPerformanceCounter/QueryPerformanceCounter.vcxproj.filters -------------------------------------------------------------------------------- /QueryPerformanceCounter/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/QueryPerformanceCounter/ReadMe.txt -------------------------------------------------------------------------------- /QueryPerformanceCounter/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/QueryPerformanceCounter/stdafx.cpp -------------------------------------------------------------------------------- /QueryPerformanceCounter/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/QueryPerformanceCounter/stdafx.h -------------------------------------------------------------------------------- /QueryPerformanceCounter/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/QueryPerformanceCounter/targetver.h -------------------------------------------------------------------------------- /RDTSC/RDTSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/RDTSC/RDTSC.cpp -------------------------------------------------------------------------------- /RDTSC/RDTSC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/RDTSC/RDTSC.vcxproj -------------------------------------------------------------------------------- /RDTSC/RDTSC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/RDTSC/RDTSC.vcxproj.filters -------------------------------------------------------------------------------- /RDTSC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/RDTSC/ReadMe.txt -------------------------------------------------------------------------------- /RDTSC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/RDTSC/stdafx.cpp -------------------------------------------------------------------------------- /RDTSC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/RDTSC/stdafx.h -------------------------------------------------------------------------------- /RDTSC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/RDTSC/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # anti-debug 2 | -------------------------------------------------------------------------------- /REP_CALL/REP_CALL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/REP_CALL/REP_CALL.cpp -------------------------------------------------------------------------------- /REP_CALL/REP_CALL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/REP_CALL/REP_CALL.vcxproj -------------------------------------------------------------------------------- /REP_CALL/REP_CALL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/REP_CALL/REP_CALL.vcxproj.filters -------------------------------------------------------------------------------- /REP_CALL/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/REP_CALL/ReadMe.txt -------------------------------------------------------------------------------- /REP_CALL/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/REP_CALL/stdafx.cpp -------------------------------------------------------------------------------- /REP_CALL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/REP_CALL/stdafx.h -------------------------------------------------------------------------------- /REP_CALL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/REP_CALL/targetver.h -------------------------------------------------------------------------------- /Registry/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Registry/ReadMe.txt -------------------------------------------------------------------------------- /Registry/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Registry/Registry.cpp -------------------------------------------------------------------------------- /Registry/Registry.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Registry/Registry.vcxproj -------------------------------------------------------------------------------- /Registry/Registry.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Registry/Registry.vcxproj.filters -------------------------------------------------------------------------------- /Registry/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Registry/stdafx.cpp -------------------------------------------------------------------------------- /Registry/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Registry/stdafx.h -------------------------------------------------------------------------------- /Registry/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/Registry/targetver.h -------------------------------------------------------------------------------- /SEH/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SEH/ReadMe.txt -------------------------------------------------------------------------------- /SEH/SEH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SEH/SEH.cpp -------------------------------------------------------------------------------- /SEH/SEH.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SEH/SEH.vcxproj -------------------------------------------------------------------------------- /SEH/SEH.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SEH/SEH.vcxproj.filters -------------------------------------------------------------------------------- /SEH/SEH.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SEH/SEH.vcxproj.user -------------------------------------------------------------------------------- /SEH/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SEH/stdafx.cpp -------------------------------------------------------------------------------- /SEH/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SEH/stdafx.h -------------------------------------------------------------------------------- /SEH/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SEH/targetver.h -------------------------------------------------------------------------------- /STARTUPINFO/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/STARTUPINFO/ReadMe.txt -------------------------------------------------------------------------------- /STARTUPINFO/STARTUPINFO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/STARTUPINFO/STARTUPINFO.cpp -------------------------------------------------------------------------------- /STARTUPINFO/STARTUPINFO.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/STARTUPINFO/STARTUPINFO.vcxproj -------------------------------------------------------------------------------- /STARTUPINFO/STARTUPINFO.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/STARTUPINFO/STARTUPINFO.vcxproj.filters -------------------------------------------------------------------------------- /STARTUPINFO/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/STARTUPINFO/stdafx.cpp -------------------------------------------------------------------------------- /STARTUPINFO/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/STARTUPINFO/stdafx.h -------------------------------------------------------------------------------- /STARTUPINFO/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/STARTUPINFO/targetver.h -------------------------------------------------------------------------------- /SeDebugPrivilege/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SeDebugPrivilege/ReadMe.txt -------------------------------------------------------------------------------- /SeDebugPrivilege/SeDebugPrivilege.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SeDebugPrivilege/SeDebugPrivilege.cpp -------------------------------------------------------------------------------- /SeDebugPrivilege/SeDebugPrivilege.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SeDebugPrivilege/SeDebugPrivilege.vcxproj -------------------------------------------------------------------------------- /SeDebugPrivilege/SeDebugPrivilege.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SeDebugPrivilege/SeDebugPrivilege.vcxproj.filters -------------------------------------------------------------------------------- /SeDebugPrivilege/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SeDebugPrivilege/stdafx.cpp -------------------------------------------------------------------------------- /SeDebugPrivilege/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SeDebugPrivilege/stdafx.h -------------------------------------------------------------------------------- /SeDebugPrivilege/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SeDebugPrivilege/targetver.h -------------------------------------------------------------------------------- /SetUnhandledExceptionFilter/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SetUnhandledExceptionFilter/ReadMe.txt -------------------------------------------------------------------------------- /SetUnhandledExceptionFilter/SetUnhandledExceptionFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SetUnhandledExceptionFilter/SetUnhandledExceptionFilter.cpp -------------------------------------------------------------------------------- /SetUnhandledExceptionFilter/SetUnhandledExceptionFilter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SetUnhandledExceptionFilter/SetUnhandledExceptionFilter.vcxproj -------------------------------------------------------------------------------- /SetUnhandledExceptionFilter/SetUnhandledExceptionFilter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SetUnhandledExceptionFilter/SetUnhandledExceptionFilter.vcxproj.filters -------------------------------------------------------------------------------- /SetUnhandledExceptionFilter/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SetUnhandledExceptionFilter/stdafx.cpp -------------------------------------------------------------------------------- /SetUnhandledExceptionFilter/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SetUnhandledExceptionFilter/stdafx.h -------------------------------------------------------------------------------- /SetUnhandledExceptionFilter/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SetUnhandledExceptionFilter/targetver.h -------------------------------------------------------------------------------- /SingleStep/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SingleStep/ReadMe.txt -------------------------------------------------------------------------------- /SingleStep/SingleStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SingleStep/SingleStep.cpp -------------------------------------------------------------------------------- /SingleStep/SingleStep.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SingleStep/SingleStep.vcxproj -------------------------------------------------------------------------------- /SingleStep/SingleStep.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SingleStep/SingleStep.vcxproj.filters -------------------------------------------------------------------------------- /SingleStep/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SingleStep/stdafx.cpp -------------------------------------------------------------------------------- /SingleStep/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SingleStep/stdafx.h -------------------------------------------------------------------------------- /SingleStep/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/SingleStep/targetver.h -------------------------------------------------------------------------------- /ZwSetInformationThread/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/ZwSetInformationThread/ReadMe.txt -------------------------------------------------------------------------------- /ZwSetInformationThread/ZwSetInformationThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/ZwSetInformationThread/ZwSetInformationThread.cpp -------------------------------------------------------------------------------- /ZwSetInformationThread/ZwSetInformationThread.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/ZwSetInformationThread/ZwSetInformationThread.vcxproj -------------------------------------------------------------------------------- /ZwSetInformationThread/ZwSetInformationThread.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/ZwSetInformationThread/ZwSetInformationThread.vcxproj.filters -------------------------------------------------------------------------------- /ZwSetInformationThread/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/ZwSetInformationThread/stdafx.cpp -------------------------------------------------------------------------------- /ZwSetInformationThread/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/ZwSetInformationThread/stdafx.h -------------------------------------------------------------------------------- /ZwSetInformationThread/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphaSeclab/anti-debug/HEAD/ZwSetInformationThread/targetver.h --------------------------------------------------------------------------------