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-52691 | Kitploit
Tools/GitHubGitHub/udyz/cve-2025-52691
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRed Teaming
GitHubudyz/cve-2025-52691

CVE-2025-52691

View Repository
7 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-2025-52691

SmarterMail Unauthenticated Arbitrary File Upload RCE

Overview

Critical unauthenticated arbitrary file upload allowing remote code execution.

FieldValue
ProductSmarterMail
AffectedBuild 9406 and earlier
CVSS10.0 (Critical)
TypeArbitrary File Upload
VectorHTTP (unauthenticated)
ImpactRemote Code Execution

Attack Flow

root@kitploit:~
flowchart LR
    A[Attacker] --> B["Find Upload Endpoint"]
    B --> C["/api/upload"]
    C --> D["Upload ASPX Shell"]
    D --> E["Path Traversal"]
    E --> F["../wwwroot/"]
    F --> G["Access Shell"]
    G --> H["RCE as IIS User"]

Technical Details

The vulnerability allows unauthenticated attackers to upload arbitrary files to any server location. By uploading an ASPX webshell to the webroot, attackers achieve code execution.

Attack Steps:

  1. Upload ASPX webshell via vulnerable endpoint
  2. Use path traversal to write to wwwroot
  3. Access uploaded shell via HTTP
  4. Execute arbitrary commands

Usage

root@kitploit:~
python exploit.py https://mail.target.com

python exploit.py https://mail.target.com -c "whoami"

python exploit.py https://mail.target.com -c "net user"

Parameters

FlagDescriptionDefault
-c, --commandCommand to executenone

Requirements

root@kitploit:~
requests

Mitigation

  • Update to SmarterMail Build 9413 or later
  • Restrict access to management interfaces
  • Implement WAF rules

Disclaimer

For authorized security testing only.

Download Tool
-t, --timeout
Request timeout
30
--check-onlyOnly check if aliveoff