
21 changes to exploits/shellcodes Microsoft Exchange Mailbox Assistants 15.0.847.40 - 'Service MSExchangeMailboxAssistants' Unquoted Service Path Microsoft Exchange Active Directory Topology 15.0.847.40 - 'Service MSExchangeADTopology' Unquoted Service Path 7-zip - Code Execution / Local Privilege Escalation PTPublisher v2.3.4 - Unquoted Service Path EaseUS Data Recovery - 'ensserver.exe' Unquoted Service Path Zyxel NWA-1100-NH - Command Injection ManageEngine ADSelfService Plus 6.1 - User Enumeration Verizon 4G LTE Network Extender - Weak Credentials Algorithm Delta Controls enteliTOUCH 3.40.3935 - Cross-Site Request Forgery (CSRF) Delta Controls enteliTOUCH 3.40.3935 - Cross-Site Scripting (XSS) Delta Controls enteliTOUCH 3.40.3935 - Cookie User Password Disclosure Scriptcase 9.7 - Remote Code Execution (RCE) WordPress Plugin Motopress Hotel Booking Lite 4.2.4 - SQL Injection Easy Appointments 1.4.2 - Information Disclosure WordPress Plugin Videos sync PDF 1.7.4 - Stored Cross Site Scripting (XSS) WordPress Plugin Popup Maker 1.16.5 - Stored Cross-Site Scripting (Authenticated) REDCap 11.3.9 - Stored Cross Site Scripting PKP Open Journals System 3.3 - Cross-Site Scripting (XSS) WordPress Plugin Elementor 3.6.2 - Remote Code Execution (RCE) (Authenticated) Fuel CMS 1.5.0 - Cross-Site Request Forgery (CSRF)
35 lines
No EOL
1 KiB
Text
35 lines
No EOL
1 KiB
Text
# Exploit Title: WordPress Plugin Motopress Hotel Booking Lite 4.2.4 - SQL Injection
|
|
# Date: 2022-04-11
|
|
# Exploit Author: Mohsen Dehghani (aka 0xProfessional)
|
|
# Vendor Homepage: https://motopress.com/
|
|
# Software Link: https://downloads.wordpress.org/plugin/motopress-hotel-booking-lite.4.2.4.zip
|
|
# Version: 4.2.4
|
|
# Tested on: Windows/XAMPP
|
|
###########################################################################
|
|
PoC:
|
|
|
|
Vulnerable File:sync-urls-repository.php
|
|
|
|
public function insertUrls($roomId, $urls)
|
|
{
|
|
global $wpdb;
|
|
|
|
if (empty($urls)) {
|
|
return;
|
|
}
|
|
|
|
$urls = $this->prepareUrls($urls);
|
|
$values = array();
|
|
|
|
foreach ($urls as $syncId => $url) {
|
|
$values[] = $wpdb->prepare("(%d, %s, %s)", $roomId, $syncId, $url);
|
|
}
|
|
|
|
$sql = "INSERT INTO {$this->tableName} (room_id, sync_id, calendar_url)"
|
|
. " VALUES " . implode(', ', $values);
|
|
|
|
$wpdb->query($sql);
|
|
|
|
Vulnerable Parameter:
|
|
room_id=SQL Injection
|
|
sync_id=SQL Injection |