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-53770-Vulnerable-Scanner — Python script to scan SharePoint hosts for CVE-2025-53770 using custom payloads, with optional Burp Suite proxy interception for traffic analysis and vulnerable host logging. | Kitploit
Tools/GitHubGitHub/imbas007/cve-2025-53770-vulnerable-scanner
Vulnerability ScannersWeb Proxies & InterceptionExploitationWeb Application ExploitationInformation GatheringPenetration Testing
GitHubimbas007/cve-2025-53770-vulnerable-scanner

CVE-2025-53770-Vulnerable-Scanner

Python script to scan SharePoint hosts for CVE-2025-53770 using custom payloads, with optional Burp Suite proxy interception for traffic analysis and vulnerable host logging.

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

Pre-Exploit Vulnerability Check for CVE-2025-53770 (with Burp Suite Proxy)

This script checks a list of SharePoint hosts for vulnerability to CVE-2025-53770 using a custom payload and routes all requests through Burp Suite's proxy for interception and analysis.

Features

  • Checks single or multiple targets for CVE-2025-53770.
  • Uses a custom payload (from a JSON file).
  • Sends requests through Burp Suite proxy (http://127.0.0.1:8080).
  • Suppresses SSL warnings for clean output.
  • Saves all vulnerable hosts to vulnerable_hosts.txt after the scan.
  • Prints [VULNERABLE], [SAFE], or [ERROR] for each target.

Requirements

  • Python 3.7+
  • requests library ()
pip install requests
  • Burp Suite (optional, for interception)
  • config.json (scanner config)
  • payload.json (POST data for the exploit)
  • Target list file (e.g., live_list.txt)
  • Usage

    1. Prepare Files

    • config.json: Contains detection rules, endpoints, headers, etc.
    • payload.json: Contains only the POST data, e.g.:
      root@kitploit:~
      {
        "MSOTlPn_Uri": "https://{host}/_controltemplates/15/AclEditor.ascx",
        "MSOTlPn_DWP": "<your payload here>"
      }
      
    • live_list.txt: List of targets (one per line, IP or hostname only, no protocol).

    2. Start Burp Suite (Optional)

    • Open Burp Suite and ensure the proxy is listening on 127.0.0.1:8080.

    3. Run the Script

    For a list of targets:

    root@kitploit:~
    python3 Vul_Sacnner.py -l live_list.txt --payload payload.json
    

    For a single target:

    root@kitploit:~
    python3 Vul_Sacnner.py -t 1.2.3.4 --payload payload.json
    

    After the scan, check vulnerable_hosts.txt for the list of vulnerable hosts.

    Download Tool