英文: Writing ```movabs``` instruction as NULL-free shellcode 问题 我看过一些用“xor”和“inc”指令重写“mov”指令以生成无空字节的s...
获取shellcode中数据的绝对地址
英文: Getting absolute address of data in shellcode 问题 以下是您的shellcode: xor rax, rax xor rdi, rdi xor r...
将EXE文件加载到另一个进程的内存地址空间中。
英文: Load EXE file into memory in the address space of another process 问题 我有一个exe文件,我想要获取它的十六进制字节,将其加...
为什么使用Win32API函数启动的进程/线程似乎会劫持并终止父进程?
英文: Go: Why do processes/Threads started using Win32API funcs seem to hijack and kill the parent pro...
如何在Go语言中执行本机指令?
英文: How can I execute native instructions in GoLang? 问题 我在想如何在Go语言中执行字节码(即shellcode)。无论如何,我找到了一些帮助我入...
在Go中执行字节数组
英文: Executing Byte Array in Go 问题 我正在尝试在Go程序中执行shellcode,类似于其他语言的做法。 示例1 - https://stackoverflow.com...