mirror of
https://github.com/rbmm/SC
synced 2026-06-08 17:03:41 +00:00
19 lines
286 B
NASM
19 lines
286 B
NASM
.686
|
|
|
|
.MODEL FLAT
|
|
|
|
.code
|
|
|
|
; void __stdcall ep(struct _PEB *,unsigned char *,unsigned long)
|
|
extern ?ep@@YGXPAU_PEB@@PAEK@Z : PROC
|
|
|
|
; void __stdcall epASM()
|
|
?epASM@@YGXXZ proc
|
|
jmp ?ep@@YGXPAU_PEB@@PAEK@Z
|
|
?epASM@@YGXXZ endp
|
|
|
|
include <../scentry/nobase.x86.inc>
|
|
|
|
include <imp.x86.asm>
|
|
|
|
end |