├── OutputDebugStringA Demo ├── ODS.vcxproj ├── ODS.vcxproj.filters ├── ODS.vcxproj.user ├── OutputDebugStringADemo.sln └── main.cpp ├── OutputDebugStringAHook.patch ├── README.md └── scripts ├── extract_syscall_table.py ├── find_apicall_functions.py └── mp_apicall_7.py /OutputDebugStringA Demo/ODS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-p-b/WindowsDefenderTools/HEAD/OutputDebugStringA Demo/ODS.vcxproj -------------------------------------------------------------------------------- /OutputDebugStringA Demo/ODS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-p-b/WindowsDefenderTools/HEAD/OutputDebugStringA Demo/ODS.vcxproj.filters -------------------------------------------------------------------------------- /OutputDebugStringA Demo/ODS.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-p-b/WindowsDefenderTools/HEAD/OutputDebugStringA Demo/ODS.vcxproj.user -------------------------------------------------------------------------------- /OutputDebugStringA Demo/OutputDebugStringADemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-p-b/WindowsDefenderTools/HEAD/OutputDebugStringA Demo/OutputDebugStringADemo.sln -------------------------------------------------------------------------------- /OutputDebugStringA Demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-p-b/WindowsDefenderTools/HEAD/OutputDebugStringA Demo/main.cpp -------------------------------------------------------------------------------- /OutputDebugStringAHook.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-p-b/WindowsDefenderTools/HEAD/OutputDebugStringAHook.patch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-p-b/WindowsDefenderTools/HEAD/README.md -------------------------------------------------------------------------------- /scripts/extract_syscall_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-p-b/WindowsDefenderTools/HEAD/scripts/extract_syscall_table.py -------------------------------------------------------------------------------- /scripts/find_apicall_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-p-b/WindowsDefenderTools/HEAD/scripts/find_apicall_functions.py -------------------------------------------------------------------------------- /scripts/mp_apicall_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v-p-b/WindowsDefenderTools/HEAD/scripts/mp_apicall_7.py --------------------------------------------------------------------------------