CYBERSAREEN/CyberSecurityTools

GitHub: CYBERSAREEN/CyberSecurityTools

一个包含20多个Python安全工具的综合合集,涵盖网络扫描、流量分析、中间人攻击和Web安全测试等功能,专为道德黑客和安全研究人员设计。

Stars: 1 | Forks: 0

# 🔒 CyberSecurityTools 套件 ![GitHub](https://img.shields.io/badge/Python-3.8+-blue.svg) ![GitHub](https://img.shields.io/badge/License-MIT-green.svg) ![GitHub](https://img.shields.io/badge/Tools-20+-orange.svg) ![GitHub](https://img.shields.io/badge/Security-Penetration_Testing-red.svg) 一个包含 **20 多个自定义 Python 安全工具**的综合合集,专为道德黑客、网络安全测试和渗透测试设计。采用多线程优化和专业的 CLI 接口开发。 ## 📋 目录 - [🚀 快速开始](#-quick-start) - [🛠️ 工具概览](#️-tools-overview) - [⚙️ 安装](#️-installation) - [🔧 使用示例](#-usage-examples) - [📚 工具分类](#-tool-categories) - [⚠️ 法律免责声明](#️-legal-disclaimer) - [🤝 贡献](#-contributing) ## 🚀 快速开始 ``` # Clone repository git clone https://github.com/CYBERSAREEN/CyberSecurityTools.git # Navigate to directory cd CyberSecurityTools # Install dependencies pip install -r requirements.txt # 运行任意 tool python3 network_scanner.py --help ``` ## 🛠️ 工具概览 ### 🔄 **网络操控工具** | 工具 | 图标 | 描述 | 状态 | |------|------|-------------|---------| | **MAC Address Changer** | 🔄 | 伪造 MAC 地址以实现匿名/测试 | ✅ 活跃 | | **MAC Changer (Algorithmic)** | 🔁 | 具有模式的高级 MAC 轮换 | ✅ 活跃 | | **Network Scanner** | 🌐 | 发现网络上的设备和开放端口 | ✅ 活跃 | | **ARP Spoofer** | 🕵️ | 执行 ARP 缓存投毒攻击 | ✅ 测试中 | | **ARP Spoof Detector** | 🚨 | 检测网络上的 ARP 欺骗尝试 | ✅ 活跃 | ### 📡 **数据包分析工具** | 工具 | 图标 | 描述 | 状态 | |------|------|-------------|---------| | **Packet Sniffer** | 👃 | 捕获并分析网络数据包 | ✅ 活跃 | | **DNS Spoofer** | 📡 | 将 DNS 查询重定向到恶意站点 | ✅ 测试中 | | **File Interceptor** | 📁 | 拦截并修改文件传输 | 🔧 开发中 | ### 💉 **漏洞利用工具** | 工具 | 图标 | 描述 | 状态 | |------|------|-------------|---------| | **Code Injector** | 💉 | 向网络流中注入恶意代码 | 🔧 开发中 | | **HTTPS Bypass Demo** | 🔓 | 演示 SSL 剥离攻击 | ✅ 测试中 | ### 🦠 **恶意软件模拟** | 工具 | 图标 | 描述 | 状态 | |------|------|-------------|---------| | **Malware Simulation** | 🦠 | 模拟恶意软件行为以进行分析 | ✅ 活跃 | | **Keylogger Simulator** | ⌨️ | 教育性键盘记录演示 | ✅ 活跃 | | **Backdoor Communicator** | 🚪 | 模拟 C2 通信通道 | ✅ 测试中 | | **Malware Packager** | 📦 | 打包 Payload 用于渗透测试 | 🔧 开发中 | ### 🕸️ **Web 安全工具** | 工具 | 图标 | 描述 | 状态 | |------|------|-------------|---------| | **Web Interaction Tool** | 🕸️ | 自动化 Web 应用程序交互 | ✅ 活跃 | | **Web Crawler** | 🕷️ | 映射 Web 应用程序结构和端点 | ✅ 活跃 | | **Login Guessing Tool** | 🔑 | 执行撞库攻击 | ✅ 测试中 | | **Vulnerability Scanner** | 💣 | 识别常见的 Web 漏洞 | 🔧 开发中 | ## ⚙️ 安装 ### 前置条件 - Python 3.8+ - Linux/Unix 环境(推荐) - 部分工具需要 Root 权限 ### 分步设置 ``` # 1. Clone repository git clone https://github.com/CYBERSAREEN/CyberSecurityTools.git # 2. Install system dependencies (Ubuntu/Debian) sudo apt update sudo apt install python3-pip libnetfilter-queue-dev # 3. Install Python packages pip3 install -r requirements.txt # 4. 验证安装 python3 --version ``` ## 📚 工具分类 ### 🔍 **侦察** - 网络发现与映射 - 端口扫描服务 - 主机枚举技术 ### 🎭 **欺骗与中间人攻击 (MITM)** - ARP 缓存投毒 - DNS 欺骗攻击 - MAC 地址操控 ### 📊 **流量分析** - 数据包捕获与检查 - 协议分析 - 流量模式识别 ### 🎯 **Web 应用程序测试** - 自动化爬虫 - 漏洞评估 - 认证测试 ### 🧪 **教育性模拟** - 恶意软件行为模拟 - 攻击演示 - 安全概念验证 ## 🏗️ 架构 ``` CyberSecurityTools/ ├── 📁 network_tools/ # Network manipulation │ ├── mac_changer.py │ ├── network_scanner.py │ └── arp_spoofer.py ├── 📁 analysis_tools/ # Traffic analysis │ ├── packet_sniffer.py │ └── arp_detector.py ├── 📁 web_tools/ # Web security │ ├── web_crawler.py │ ├── vulnerability_scanner.py │ └── login_guesser.py ├── 📁 simulation_tools/ # Educational simulations │ ├── malware_simulator.py │ ├── keylogger_sim.py │ └── backdoor_sim.py └── 📁 utils/ # Shared utilities ├── helpers.py └── config.py ``` ## ⚠️ 法律免责声明 **🚨 重要提示:仅供合法使用** ``` This toolkit is developed for: ✅ Authorized penetration testing ✅ Educational purposes ✅ Security research ✅ Improving defensive measures STRICTLY PROHIBITED for: ❌ Unauthorized network access ❌ Malicious activities ❌ Illegal surveillance ❌ Any unlawful purposes The developer is not responsible for misuse. Users must ensure they have proper authorization before using these tools. ``` ### 🐛 报告问题 - 使用 Issue 模板 - 提供详细的复现步骤 - 包含系统信息 ### 💡 功能请求 - 描述使用场景 - 建议实现方法 - 考虑向后兼容性 ### 🔧 开发 1. Fork 本仓库 2. 创建功能分支 3. 提交 Pull Request ## 📊 项目统计 ![GitHub Issues](https://img.shields.io/github/issues/CYBERSAREEN/CyberSecurityTools) ![GitStars](https://img.shields.io/github/stars/CYBERSAREEN/CyberSecurityTools) ![GitHub Forks](https://img.shields.io/github/forks/CYBERSAREEN/CyberSecurityTools) ![GitHub Contributors](https://img.shields.io/github/contributors/CYBERSAREEN/CyberSecurityTools) ## 👨‍💻 开发者 **Vedant Sareen** 🔗 [LinkedIn](https://www.linkedin.com/in/sareen-cybersecurity-477180ved/) 🐙 [GitHub](https://github.com/CYBERSAREEN) 📧 securecybernetics@gmail.com ## 📜 许可证 本项目采用 MIT 许可证授权 - 详情请参阅 [LICENSE](LICENSE) 文件。
### 🛡️ **由安全专业人员打造,为安全专业人员服务** 🛡️ **“知识就是力量,但道德应用是责任”** [![Star](https://img.shields.io/badge/⭐_Star_this_repo-if_you_found_it_helpful-yellow?)](#) [![Fork](https://img.shields.io/badge/🍴_Fork_for_customization-green?)](#)
标签:ARP欺骗, DNS欺骗, GitHub, MAC地址修改, Python, Windows内核, 中间人攻击, 云存储安全, 协议分析, 实时处理, 密码管理, 插件系统, 数据统计, 文档结构分析, 无后门, 权限提升, 白帽子, 端口扫描, 系统分析, 网络分析, 网络安全, 网络扫描, 脚本工具, 隐私保护