mirror of
https://github.com/D3Ext/Hooka
synced 2026-06-08 10:49:57 +00:00
15 lines
215 B
Go
15 lines
215 B
Go
package hooka
|
|
|
|
import (
|
|
"github.com/D3Ext/Hooka/evasion"
|
|
)
|
|
|
|
func BlockDLLs() error {
|
|
return evasion.BlockDLLs()
|
|
}
|
|
|
|
func CreateProcessBlockDLLs(cmd string) error {
|
|
return evasion.CreateProcessBlockDLLs(cmd)
|
|
}
|
|
|