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/gabrielftanaka/cve-2026-82221-poc
Vulnerability AnalysisExploitationWeb Application ExploitationPapers & ResearchLearning & Education
GitHubgabrielftanaka/cve-2026-82221-poc

CVE-2026-82221-PoC

PoC for Unauthenticated Reflected Cross-Site Scripting (XSS) in RegistrationMagic WordPress Plugin

View Repository
5h 17m 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-2026-82221 - Unauthenticated Reflected XSS in RegistrationMagic

Overview

This repository contains a Proof-of-Concept (PoC) for CVE-2026-82221, an unauthenticated Reflected Cross-Site Scripting (XSS) vulnerability discovered in the RegistrationMagic WordPress plugin.

The vulnerability affects the activetab parameter on the RegistrationMagic submissions page.

An attacker can craft a malicious URL containing JavaScript and send it to a victim who has access to a RegistrationMagic submission. When the victim opens the crafted URL, attacker-controlled JavaScript is executed in the context of the vulnerable WordPress website.

A relevant aspect of the vulnerability is that an attacker may be able to create the required submission on behalf of the victim if a publicly accessible RegistrationMagic form allows arbitrary email addresses to be submitted.

This repository is provided for educational and security research purposes only.


Vulnerability Details

FieldValue
CVECVE-2026-82221
ProductRegistrationMagic
VendorMetagauss
PlatformWordPress
Vulnerability TypeReflected Cross-Site Scripting (XSS)
Authentication RequiredNo authentication required to inject the payload
Affected VersionsRegistrationMagic <= 6.0.9.8
Fixed VersionRegistrationMagic 6.0.9.9
CVSS7.1 (High)
ResearcherGabriel Tanaka

Attack Requirements

For successful exploitation, the victim must have a RegistrationMagic submission that can be accessed through the /submissions/ functionality.

This condition can occur in two scenarios:

  1. The victim has previously submitted a RegistrationMagic form and already has an accessible submission.

  2. A public RegistrationMagic form allows an attacker to submit a form using the victim's email address, effectively creating a submission associated with that victim.

Once this prerequisite is satisfied, the attacker can send the victim a specially crafted URL containing the XSS payload.


Vulnerable Parameter

The vulnerable parameter is:

root@kitploit:~
activetab

Example vulnerable endpoint:

root@kitploit:~
https://target.example/submissions/?activetab=PAYLOAD

User-controlled input supplied through activetab is reflected into the page without sufficient output sanitization/escaping, allowing JavaScript execution.


Proof of Concept

A simple payload can be used to demonstrate arbitrary JavaScript execution:

root@kitploit:~
https://target.example/submissions/?activetab=alert(`xss`)
root@kitploit:~
https://target.example/submissions/?activetab=alert(document.cookie)
image
image

References

  • CVE Record
    https://www.cve.org/CVERecord?id=CVE-2026-82221

  • Patchstack Vulnerability Database
    https://patchstack.com/database/wordpress/plugin/custom-registration-form-builder-with-submission-manager/vulnerability/wordpress-registrationmagic-plugin-6-0-9-8-cross-site-scripting-xss-vulnerability?_s_id=cve

  • GitHub Advisory Database
    https://github.com/advisories/GHSA-gfh3-73rq-r627

  • RegistrationMagic
    https://wordpress.org/plugins/custom-registration-form-builder-with-submission-manager/

  • RegistrationMagic Changelog
    https://wordpress.org/plugins/custom-registration-form-builder-with-submission-manager/#developers

Download Tool