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/xor.s | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 other/shellkit/x86_linux/xor.s (limited to 'other/shellkit/x86_linux/xor.s') diff --git a/other/shellkit/x86_linux/xor.s b/other/shellkit/x86_linux/xor.s new file mode 100644 index 0000000..29e3b78 --- /dev/null +++ b/other/shellkit/x86_linux/xor.s @@ -0,0 +1,24 @@ + .globl cbegin + .globl cend + +cbegin: + jmp XOR_down + +XOR_up: + popl %ebx + movb $0x26, %cl /* lenght */ + +XORLoop: + xorb $0x64, %bl /* xor key */ + incl %ebx + dec %cl + jnz XORLoop + jmp XORLoopDone + +XOR_down: + call XOR_up + +XORLoopDone: + .ascii "" + +cend: -- cgit v1.3