;============================================================================================================================================= ; step_19.asm ;Execute the program using old WinExec ; Algorithm ;A1: Execute the program ;(C)I don't take any responsibility for the use of this program ; Zedr0n -- connection closed ;============================================================================================================================================= ;============================================================================================================================================= ; Options/Declarations ;============================================================================================================================================= .386 .model flat, stdcall option casemap:none include windows.inc include kernel32.inc include shell32.inc includelib \masm32\lib\kernel32.lib includelib \masm32\lib\shell32.lib ;============================================================================================================================================= ; Data segment ;============================================================================================================================================= .data FileName db "calc.exe",0 ;============================================================================================================================================ ; Variables segment ;============================================================================================================================================ .data? ;============================================================================================================================================= ; Code segment ;============================================================================================================================================= .code start: invoke WinExec,offset FileName,SW_SHOW invoke ExitProcess,NULL end start