文件名称:shellload:将shellcode加载到新进程中,可以选择使用假名称
文件大小:2KB
文件格式:ZIP
更新时间:2024-06-05 21:08:33
c linux shellcode post-exploitation redteam
壳载 将shellcode加载到新进程中,可以选择将其隐藏在错误的进程名称下。 用法 简单的用法是将您的shellcode(十六进制编码)通过管道传输到stdin。 这将在当前的shellload进程中运行shellcode。 (提供的示例shellcode将运行touch itworks命令) $ printf "6a3b589948bb2f62696e2f736800534889e7682d6300004889e652e80e000000746f756368206974776f726b730056574889e60f05" | ./shellload64 中间用法是将shellcode作为参数传递。 这会产生一个运行shellcode的后台进程。 $ ./shellload64 6a3b589948bb2f62696e2f736800534889e7682d630000488
【文件预览】:
shellload-master
----README.md(1KB)
----Makefile(605B)
----.gitignore(18B)
----main.c(1KB)