mirror of
https://github.com/D3Ext/Hooka
synced 2026-06-08 10:49:57 +00:00
22 lines
404 B
Go
22 lines
404 B
Go
package hooka
|
|
|
|
import "github.com/D3Ext/Hooka/core"
|
|
|
|
func CreateRemoteThread(shellcode []byte) (error) {
|
|
return core.CreateRemoteThread(shellcode)
|
|
}
|
|
|
|
func CreateProcess(shellcode []byte) (error) {
|
|
return core.CreateProcess(shellcode)
|
|
}
|
|
|
|
func Fibers(shellcode []byte) (error) {
|
|
return core.Fibers(shellcode)
|
|
}
|
|
|
|
func EarlyBirdApc(shellcode []byte) (error) {
|
|
return core.EarlyBirdApc(shellcode)
|
|
}
|
|
|
|
|