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
opac-fast-automation — automation untuk CVE-2025-65862 | Kitploit
Tools/GitHubGitHub/rimbadirgantara/opac-fast-automation
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingPapers & ResearchLearning & Education
GitHubrimbadirgantara/opac-fast-automation

opac-fast-automation

automation untuk CVE-2025-65862

View Repository
2 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-65862 — Documentation, Analysis, and Automation Tool (Research Purposes Only)

⚠️ Ethical & Legal Warning All materials in this repository are provided solely for:

  • security research,
  • learning,
  • vulnerability analysis,
  • and testing in environments you own or have explicit permission to test.

Exploiting, misusing bugs, or uploading malicious files to third-party servers without permission is illegal and violates Indonesian law (UU ITE) as well as international law.
The author is not responsible for any misuse of the described tools or techniques.


📌 CVE-2025-65862 Summary

  • CVE ID : CVE-2025-65862
  • Affected product : SLiMS Bulian v9.7.2
  • Classification : Arbitrary File Upload → Remote Code Execution (RCE)
  • Severity : Medium
  • Public research source :
    https://medium.com/@xpl0dec/zeroday-slims9-bulian-v9-7-2-arbitrary-file-write-to-rce-6a458ad7960f

🧩 What's the issue?

In SLiMS Bulian 9.7.2, there is a misconfiguration when a user (with weak credentials) uploads a plugin ZIP file.

The flow:

  1. The application accepts a ZIP file upload.
  2. The system performs automatic extraction.
  3. Extracted files are placed into: /plugins/
  4. All files inside the ZIP are extracted, including .php files.
  5. If the ZIP contains a backdoor file such as:
    root@kitploit:~
    └── myplugin/
    └── shell.php
    
    Then the file can be accessed via: /plugins/myplugin/shell.php
  6. This can lead to arbitrary file upload → remote code execution if the user uses a weak credential combination.

🔍 Indicators of Compromise (IOC)

If you manage SLiMS, look out for the following:

  • Suspicious folders in /plugins/
  • Foreign PHP files inside plugin folders
  • Plugin upload logs from accounts with weak passwords
  • Unusual file activity after uploading a .zip file
  • Suspicious requests to: /plugins//something.php

🛡️ Mitigation & Recommendations

  1. Update SLiMS to the latest version or available security patch.
  2. Change admin/user passwords to strong standards (CISA.gov guidelines).
  3. Disable plugin upload if not in use.
  4. Monitor the /plugins/ directory and remove unknown files.
  5. Audit admin logs to detect unauthorized uploads.
  6. Isolate the system if suspected compromised.
  7. Restore from a backup taken before the incident.

⚙️ Automation Script Documentation

This script is used to:

  • automate testing for the CVE-2025-65862 misconfiguration,
  • test whether a SLiMS instance is vulnerable,
  • upload a plugin ZIP containing a payload for research purposes.

🎛️ Arguments

FlagFunction
-lPath to a file listing target SLiMS instances
-fPlugin ZIP to test (contains research payload/backdoor)
-oTo save results

▶️ Usage Example

Usage


📦 Dependencies

Install the following libraries before running the tool: pip install httpx beautifulsoup4 urllib3

Built-in Python libraries (no installation needed):

  • argparse
  • random
  • datetime
  • time
  • os
  • re
  • concurrent.futures

🔐 Licensing

This repository uses a Proprietary — All Rights Reserved license to ensure the research tool is not misused by irresponsible parties.

You are not allowed to:

  • redistribute,
  • modify,
  • resell this tool without permission from the author.

📝 Closing

This repository is created as vulnerability documentation, technical analysis, and testing tool development.
Use it ethically and professionally.

Download Tool