aboutsummaryrefslogtreecommitdiff
path: root/CodeExecution/Invoke-ReflectivePEInjection_Resources/Shellcode/x64/CallDllMain.asm
blob: 02d6848c98e8195b6d077ae78235835799bfb749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[SECTION .text]
global _start

_start:
	; Get stack setup
	push rbx
	mov rbx, rsp
	and sp, 0xff00
	
	; Call DllMain
	mov rcx, 0x4141414141414141	; DLLHandle, set by PowerShell
	mov rdx, 0x1			; PROCESS_ATTACH
	mov r8, 0x0			; NULL
	mov rax, 0x4141414141414141	; Address of DllMain, set by PS
	call rax

	; Fix stack
	mov rsp, rbx
	pop rbx
	ret