Skip to content

Instantly share code, notes, and snippets.

View 6a6f6a6f's full-sized avatar

Jojo 6a6f6a6f

View GitHub Profile
@6a6f6a6f
6a6f6a6f / findhooks.cs
Created December 17, 2021 14:28
Find hooked API's using C#
using System;
using System.Runtime.InteropServices;
/* References
* 1. https://www.ired.team/offensive-security/defense-evasion/detecting-hooked-syscall-functions
* 2. https://github.com/Mr-Un1k0d3r/EDRs
*/
namespace SharpHookCheck
{