Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/moften/cve-2024-24926
Vulnerability AnalysisCode AnalysisExploitationWeb Application ExploitationWeb SecurityPayload Development
GitHubmoften/cve-2024-24926

CVE-2024-24926

Vulnerabilidad CVE-2024-24926 afecta al tema Brooklyn de WordPress

View Repository
1 year agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2024-24926

CVE-2024-24926 Vulnerability affects the Brooklyn theme for WordPress

Description: The CVE-2024-24926 vulnerability affects the Brooklyn theme for WordPress (versions up to 4.9.7.6) and is related to deserialization of untrusted data (CWE-502). This allows an attacker to send malicious objects to the server, potentially achieving remote code execution. According to CVSS v3.1 assessment, it has a score of 7.5 (High), with a network-based attack vector, high complexity, low required privileges, and no user interaction.

Serialized object in PHP

root@kitploit:~
<?php
class Malicious {
    public $cmd = 'system("whoami");';
}
echo base64_encode(serialize(new Malicious()));
?>
Download Tool