Metadata-Version: 2.1
Name: CyberSecurityTools
Version: 0.3
Summary: CyberSecurityTool is a comprehensive Python package designed for performing essential cybersecurity scans. It includes features like subdomain enumeration, broken link checking, SQL injection testing, XSS detection, CSRF testing, and network vulnerability scanning. Built with ease of use and efficiency in mind, CyberSecurityTool empowers developers and security professionals to enhance their web application's security and identify vulnerabilities with minimal effort.
Home-page: https://github.com/ZoroHacker/CyberSecurityTools
Author: Ahmad_Bulbul
Author-email: Ahmadbulbulprof1@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: beautifulsoup4
Requires-Dist: colorama
Requires-Dist: pyfiglet
Requires-Dist: sockets

# CyberSecurityTool

**CyberSecurityTool** is a comprehensive Python package designed for performing essential cybersecurity scans. It includes tools for subdomain enumeration, broken link checking, SQL injection testing, XSS detection, CSRF testing, and network vulnerability scanning. Built with ease of use and efficiency in mind, CyberSecurityTool empowers developers and security professionals to enhance their web application's security and identify vulnerabilities with minimal effort.

## Features

- **Subdomain Enumeration**: Identify valid subdomains for a given domain using a wordlist.
- **Broken Link Checker**: Scan webpages for broken or unreachable links.
- **SQL Injection Tester**: Detect potential SQL injection vulnerabilities.
- **XSS Tester**: Identify cross-site scripting (XSS) vulnerabilities in web applications.
- **CSRF Tester**: Test for Cross-Site Request Forgery (CSRF) vulnerabilities.
- **Network Vulnerability Scanner**: Scan for open network ports on a given host.

## Installation

You can install CyberSecurityTool using `pip`: 

```bash
pip install CyberSecurityTool

```

## How To Use

**Subdomain Enumeration**

```python
# Subdomain Enumeration
subdomain_enum = SubdomainEnumerator(base_domain="example.com")
subdomains = subdomain_enum.enumerate(wordlist_path="wordlist.txt")
print(subdomains)
```

**Broken Link Checker**

```python
# Broken Link Checker
broken_link_checker = BrokenLinkChecker()
broken_links = broken_link_checker.check(url="http://testphp.vulnweb.com")
print(f"Broken Links Found: {broken_links}")
```

**Subdomain Enumeration**

```python
# Subdomain Enumeration
subdomain_enum = SubdomainEnumerator(base_domain="example.com")
subdomains = subdomain_enum.enumerate(wordlist_path="wordlist.txt")
print(subdomains)
```

**SQL Injection Tester**

```python
# SQL Injection Testing
sql_tester = SQLInjectionTester()
vulnerable = sql_tester.test(url="http://testphp.vulnweb.com/listproducts.php", param="cat")
print(f"SQL Injection Vulnerability Found: {vulnerable}")
```

**XSS Tester**

```python
# XSS Testing
xss_tester = XSSTester()
vulnerable = xss_tester.test(url="http://testphp.vulnweb.com/comment.php", param="name")
print(f"XSS Vulnerability Found: {vulnerable}")
```

**CSRF Tester**

```python
# CSRF Testing
csrf_tester = CSRFTester()
vulnerable = csrf_tester.test(form_url="http://testphp.vulnweb.com/login.php", form_data={"username": "test", "password": "pass"})
print(f"CSRF Vulnerability Found: {vulnerable}")
```

**Network Vulnerability Scanner**

```python
# Network Vulnerability Scanning
network_scanner = NetworkVulnerabilityScanner(target="192.168.1.1")
open_ports = network_scanner.scan()
print(f"Open Ports: {open_ports}")
```
