From b8937c50960d31bd0a56b7c9085ee07a69ba7fc4 Mon Sep 17 00:00:00 2001 From: SwEdryG Date: Fri, 31 Jul 2026 13:22:45 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20ipOPEN.s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ipOPEN.s | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 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