Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
CVE-2020-3452_Cisco_ASA_PathTraversal — CVE-2020-3452 के लिए प्रूफ-ऑफ-कॉन्सेप्ट एक्सप्लॉइट, Cisco ASA/FTD में पाथ ट्रैवर्सल, अनधिकृत फ़ाइल प्रकटीकरण सक्षम करता है। अधिकृत परीक्षण के लिए सुरक्षा सीमाओं के साथ ज्ञात फ़ाइलों के निष्कर्षण को स्वचालित करता है। | Kitploit
उपकरण/GitHubGitHub/abrewer251/cve-2020-3452_cisco_asa_pathtraversal
भेद्यता विश्लेषणशोषणवेब एप्लिकेशन शोषणजानकारी एकत्र करनापेनिट्रेशन टेस्टिंगलर्निंग और शिक्षा
GitHubabrewer251/cve-2020-3452_cisco_asa_pathtraversal

CVE-2020-3452_Cisco_ASA_PathTraversal

CVE-2020-3452 के लिए प्रूफ-ऑफ-कॉन्सेप्ट एक्सप्लॉइट, Cisco ASA/FTD में पाथ ट्रैवर्सल, अनधिकृत फ़ाइल प्रकटीकरण सक्षम करता है। अधिकृत परीक्षण के लिए सुरक्षा सीमाओं के साथ ज्ञात फ़ाइलों के निष्कर्षण को स्वचालित करता है।

रिपॉजिटरी देखें
11 महीने पहलेअभी तक समीक्षित नहीं

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें

CVE-2020-3452_Cisco_ASA_PathTraversal

CVE-2020-3452 के लिए प्रूफ-ऑफ-कॉन्सेप्ट स्क्रिप्ट — Cisco ASA/FTD पथ ट्रैवर्सल भेद्यता। सुरक्षा के लिए सफल डाउनलोड की एक कठिन सीमा के साथ ज्ञात फ़ाइल लक्ष्यों के स्वचालित निष्कर्षण का समर्थन करता है। केवल अधिकृत सुरक्षा परीक्षण और अनुसंधान उद्देश्यों के लिए अभिप्रेत है।


🔐 GitHub रिपॉजिटरी विवरण

सीवीई-2020-3452 के लिए प्रूफ-ऑफ-कॉन्सेप्ट स्क्रिप्ट — Cisco ASA/FTD पथ ट्रैवर्सल भेद्यता। सुरक्षा के लिए सफल डाउनलोड की एक कठिन सीमा के साथ ज्ञात फ़ाइल लक्ष्यों के स्वचालित निष्कर्षण का समर्थन करता है। केवल अधिकृत सुरक्षा परीक्षण और अनुसंधान उद्देश्यों के लिए अभिप्रेत है।


📄 README.md

root@kitploit:~
# CVE-2020-3452 PoC — Cisco ASA/FTD Path Traversal

This is a modified proof-of-concept exploit script for [CVE-2020-3452](https://nvd.nist.gov/vuln/detail/CVE-2020-3452), a directory traversal vulnerability affecting Cisco ASA and FTD devices.

The vulnerability allows unauthenticated, remote attackers to **read arbitrary files** on affected systems via a crafted HTTP request. This script automates that process by attempting to retrieve a predefined list of common configuration, portal, and HTML files, and stores successful responses locally.

> **⚠️ For authorized testing and research only. Use responsibly.**

---

## ✅ Features

- 🔁 Iterates through a curated list of target file paths known to exist on ASA/FTD systems.
- ✅ Only writes responses with **HTTP 200** and **non-empty content**.
- 🧮 Stops automatically after **200 successful downloads** to prevent abuse or noise.
- 🗂️ Writes all files to an `output/` directory, creating it automatically.
- 🔒 Sanitizes all output filenames to prevent accidental traversal or injection.
- 🧼 Suppresses SSL warnings (ASA certs are often self-signed).

---

## 🖥️ Usage

```bash
# Install dependencies
pip install requests

# Run the script
python3 cve_2020_3452.py <target-host>

Example:

root@kitploit:~
python3 cve_2020_3452.py firewall.example.com

All successful files will be saved to the output/ folder.

You may also run the script interactively:

root@kitploit:~
python3 cve_2020_3452.py

🔧 Configuration

VariableDescription
MAX_SUCCESS_WRITESStops script after this number of HTTP 200 file saves (default: 200).
OUTPUT_DIRDirectory where files will be written (default: output/).

You can safely edit these at the top of the script.


📚 Background

  • CVE: CVE-2020-3452

  • Affected:

    • Cisco ASA: 9.6 – 9.14.1.10
    • Cisco FTD: 6.2.3 – 6.6.0.1
  • Impact: Allows unauthenticated file disclosure via crafted URL traversal.


⚠️ Legal & Ethical Notice

This script is provided for educational and authorized security research purposes only.

  • 🛑 Do NOT use this tool on systems you do not own or explicitly have permission to test.
  • 🧑‍⚖️ Unauthorized use may be illegal and unethical under local, federal, or international law.
  • 🤝 You assume all responsibility for use of this tool.

🙏 Credits

  • Original author: @freakyclown
  • Modifications: hard-coded success limit, file hygiene, output directory isolation

📜 License

MIT License — see LICENSE for details.

root@kitploit:~

---

## 📦 requirements.txt

अपने रिपॉजिटरी में सेटअप को आसान बनाने के लिए इसे शामिल करें:

```txt
requests

📜 LICENSE (MIT)

root@kitploit:~
MIT License

Copyright (c) 2025

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction...

टूल डाउनलोड करें