commit b8937c50960d31bd0a56b7c9085ee07a69ba7fc4 Author: SwEdryG Date: Fri Jul 31 13:22:45 2026 +0300 Добавить ipOPEN.s diff --git a/ipOPEN.s b/ipOPEN.s new file mode 100644 index 0000000..8f0f17f --- /dev/null +++ b/ipOPEN.s @@ -0,0 +1,22 @@ +includelib kernel32.lib + +extrn WinExec : proc +extrn ExitProcess : proc + +.data +my_cmd db 63h, 6dh, 64h, 2eh, 65h, 78h, 65h, 20h, 2fh, 6bh, 69h, 70h, 63h, 6fh, 6eh, 66h, 69h, 67h, 00h + +.code + +main proc +sub rsp, 40 +lea rcx, my_cmd +mov edx, 1 +call WinExec + +xor ecx, ecx +call ExitProcess + +main endp + +end \ No newline at end of file