mirror of
https://github.com/D3Ext/Hooka
synced 2026-06-08 10:49:57 +00:00
18 lines
395 B
Go
18 lines
395 B
Go
package hooka
|
|
|
|
import "github.com/D3Ext/Hooka/evasion"
|
|
|
|
func ClassicUnhook(funcnames []string, dllpath string) error {
|
|
return evasion.ClassicUnhook(funcnames, dllpath)
|
|
}
|
|
|
|
// unhook especified DLLs (provide full paths)
|
|
func FullUnhook(dlls_to_unhook []string) error {
|
|
return evasion.FullUnhook(dlls_to_unhook)
|
|
}
|
|
|
|
// unhook ntdll.dll
|
|
func PerunsUnhook() error {
|
|
return evasion.PerunsUnhook()
|
|
}
|