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_20265 — PoC for CVE-2025-20265 Cisco Secure FMC Software RADIUS Remote Code Execution Vulnerability | Kitploit
Tools/GitHubGitHub/saruman9/cve_2025_20265
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingCommand and ControlRemote Access Tool
GitHubsaruman9/cve_2025_20265

cve_2025_20265

PoC for CVE-2025-20265 Cisco Secure FMC Software RADIUS Remote Code Execution Vulnerability

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

PoC for CVE-2025-20265

  • Advisory

⚠️ WARNING

This is a functional exploit for a 1-day vulnerability.

  • It can execute code on vulnerable systems.
  • Use only on your own internal servers you are authorized to test.
  • Unauthorized use is illegal and unethical.

Use at your own risk. You are responsible for your actions.

Building

  1. Install Rust
  2. Build the PoC:
root@kitploit:~
cargo build --release

Usage

root@kitploit:~
$ ./target/release/cve_2025_20265 --help
# or
$ cargo run --release -- --help

To debug, use the environment variable RUST_LOG:

root@kitploit:~
RUST_LOG=debug cargo run --release -- --help

Examples

root@kitploit:~
# use either the build or the path to the executable file
$ alias EXE="cargo run --release"
# or
$ cargo build --release
$ alias EXE="./target/release/cve_2025_20265"

# check the target
$ EXE https://10.10.10.1:4443/

# read targets from the file
$ echo -e "https://10.10.10.1:4443\nhttp://127.0.0.1\nhttp://10.10.10.10" > targets.txt
$ EXE --from-file targets.txt
Download Tool