16 lines
562 B
NASM
16 lines
562 B
NASM
;-----------------------------------------------------------------------------;
|
|
; Author: Ty Miller @ Threat Intelligence
|
|
; Compatible: Windows 7, 2008, Vista, 2003, XP, 2000, NT4
|
|
; Version: 1.0 (2nd December 2011)
|
|
;-----------------------------------------------------------------------------;
|
|
[BITS 32]
|
|
|
|
; Input: None
|
|
; Output: None. Sleeps for specified seconds.
|
|
; Clobbers: None
|
|
|
|
push 1000 ; milliseconds
|
|
push 0xE035F044 ; hash (kernel32.dll, Sleep)
|
|
call ebp ; Sleep(1000ms)
|
|
|