ramzihafiz
Source-scoped identity with 2 associated PoCs and 2 linked vulnerabilities.
Exploit catalog results
Showing 2 PoCs on this page
GitHubramzihafiz/CVE-2025-49132
Repository PoCStars: 1Created 2026-02-08ExploitCVE-2025-491322 files
Analysis
Technical assessment
Python script that exploits CVE-2025-49132 in Pterodactyl Panel to achieve unauthenticated remote code execution by writing a webshell and spawning a reverse shell.
Backdoor review
No backdoor observed in reviewed code
The PoC script exploits CVE-2025-49132 to create a webshell and establish a reverse shell. All actions are consistent with the stated vulnerability and directed at a user-supplied target. No concealed backdoor, credential theft, persistence, or unrelated payload is present.
Classification basis and observed behavior
Classification basis
The script actively exploits the vulnerability by sending malicious requests to write a webshell and execute a reverse shell, not merely detecting or reporting the issue.
CVE-2025-49132_POC.py:24-34Requirements
- Target Pterodactyl Panel version < 1.11.11
CVE-2025-49132_POC.py:1 - Attacker must set target host, listener IP, and port in the script
CVE-2025-49132_POC.py:13-16 - PEAR must be installed on the target at the specified path
CVE-2025-49132_POC.py:13
Observed behavior
- Sends crafted HTTP requests to /locales/locale.json to write a base64-encoded PHP webshell to /tmp/payload.php using PEAR's config-create
CVE-2025-49132_POC.py:24-25 - Sends a second set of requests to decode the base64 payload into a webshell.php file
CVE-2025-49132_POC.py:30-31 - Triggers the webshell to execute a bash reverse shell command, connecting back to the attacker's listener
CVE-2025-49132_POC.py:34
Behaviors behind the backdoor verdict
Observables
- Reverse Shell
- Payload withheldThe script constructs a reverse shell command to a user-configured IP and port, which is the stated purpose of the PoC.
CVE-2025-49132_POC.py:17 - Webshell Creation
- Payload withheldThe script creates a PHP webshell on the target to execute commands, which is a standard post-exploitation step for this CVE.
CVE-2025-49132_POC.py:18-19 - Target Configuration
- Payload withheldThe target host is a placeholder that must be changed by the user, indicating the script does not contact a hardcoded attacker-controlled server.
CVE-2025-49132_POC.py:16
What the analysis did not establish
- Evidence consists of complete source code and README; no runtime output or network captures are provided.
- Only the two text files (CVE-2025-49132_POC.py and README.md) were reviewed; no binary or other files exist in the artifact.
This review is limited to the supplied PoC code and context. It does not assert that the code works or is safe to execute.