Skip to content

AI-Assisted Vulnerability Assessment & Penetration Testing Tool SecScanX is an open-source security scanning platform that combines traditional penetration testing tools with artificial intelligence to provide comprehensive vulnerability assessments. Designed for beginners, researchers, and security professionals,

License

Notifications You must be signed in to change notification settings

yashab-cyber/SecScanX

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

4 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ›ก๏ธ SecScanX

AI-Assisted Vulnerability Assessment & Penetration Testing Tool

SecScanX is an open-source security scanning platform that combines traditional penetration testing tools with artificial intelligence to provide comprehensive vulnerability assessments. Designed for beginners, researchers, and security professionals, it offers automated reconnaissance, intelligent analysis, and detailed reporting.

License: MIT Python 3.8+ React

๐Ÿ”ง Features

Category Features
โœ… Reconnaissance Subdomain finder, WHOIS lookup, port scanning, DNS enumeration
๐Ÿง  AI Assistant Interprets scan results, suggests next steps, explains findings
๐Ÿš€ Automation Automated comprehensive scans via CLI or web interface
๐Ÿ“Š Reports Generates professional PDF and HTML reports
๐Ÿ‘ฅ Multi-user Team collaboration with project management and audit logs
๐ŸŽฏ Learning Mode Educational explanations for students and beginners
โ˜๏ธ API Ready RESTful API for integration and automation
๐Ÿ”’ Security Rate limiting, authentication, and secure configurations

๐Ÿš€ Quick Start

Prerequisites

  • Python 3.8+ and pip
  • Node.js 16+ and npm
  • nmap, dnsutils, whois (installed automatically)

Installation

# Clone the repository
git clone https://github.com/yashab-cyber/SecScanX.git
cd SecScanX

# Run the installation script (Ubuntu/Debian)
chmod +x scripts/install.sh
./scripts/install.sh

# Or install manually:
# Backend setup
cd backend
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

# Frontend setup
cd ../frontend
npm install

# CLI setup
cd ../cli
pip3 install -r requirements.txt
chmod +x secscanx.py

Configuration

# Copy and edit environment file
cp .env.example .env
# Edit .env with your settings (API keys, database config, etc.)

Running SecScanX

Start the Backend API:

cd backend
source venv/bin/activate
python app.py
# API available at http://localhost:5000

Start the Frontend (new terminal):

cd frontend
npm start
# Web interface at http://localhost:3000

Use the CLI:

# Add to PATH or use directly
./cli/secscanx.py --help

# Example scans
secscanx subdomain example.com
secscanx port 192.168.1.1 --port-range 1-1000
secscanx vuln https://example.com --scan-type web

๐Ÿ“– Usage Examples

Web Interface

  1. Dashboard: View scan statistics, recent results, and quick actions
  2. Scanner: Configure and run different types of security scans
  3. Results: Analyze findings with AI-powered insights
  4. Reports: Generate professional security assessment reports
  5. AI Assistant: Chat with AI for security advice and explanations

Command Line Interface

# Comprehensive subdomain enumeration
secscanx subdomain target.com --output results.json

# Port scan with custom range
secscanx port 10.0.0.1 --port-range 1-65535

# Web application vulnerability assessment
secscanx vuln https://target.com --scan-type comprehensive

# DNS reconnaissance
secscanx dns target.com

# Generate professional report
secscanx report results.json --format pdf

API Usage

import requests

# Start a subdomain scan
response = requests.post('http://localhost:5000/api/scan/subdomain', 
                        json={'domain': 'example.com'})
result = response.json()

# Get AI analysis
ai_response = requests.post('http://localhost:5000/api/ai/chat',
                           json={'message': 'Explain this vulnerability', 
                                'context': result})

๐Ÿ—๏ธ Architecture

SecScanX follows a modular architecture:

SecScanX/
โ”œโ”€โ”€ backend/          # Python Flask API server
โ”‚   โ”œโ”€โ”€ app.py       # Main application
โ”‚   โ”œโ”€โ”€ modules/     # Scanning and AI modules
โ”‚   โ””โ”€โ”€ models/      # Database models
โ”œโ”€โ”€ frontend/         # React web interface
โ”‚   โ”œโ”€โ”€ src/
โ”‚   โ””โ”€โ”€ components/
โ”œโ”€โ”€ cli/             # Command-line interface
โ”œโ”€โ”€ reports/         # Generated reports
โ”œโ”€โ”€ docs/           # Documentation
โ””โ”€โ”€ scripts/        # Installation and utility scripts

Key Components

  • Reconnaissance Module: Subdomain enumeration, port scanning, DNS/WHOIS lookups
  • AI Assistant: OpenAI integration for intelligent analysis and recommendations
  • Vulnerability Scanner: Web app and network service security assessment
  • Report Generator: Professional PDF/HTML report creation
  • Multi-user System: Authentication, projects, and audit logging

๐Ÿ” Scan Types

1. Subdomain Enumeration

  • Brute force common subdomains
  • Certificate Transparency log search
  • DNS zone transfer attempts
  • AI analysis of discovered subdomains

2. Port Scanning

  • TCP/UDP port discovery
  • Service version detection
  • Operating system fingerprinting
  • Risk assessment of open services

3. Vulnerability Assessment

  • Web application security testing
  • Network service vulnerability detection
  • SSL/TLS configuration analysis
  • Security header verification

4. DNS Enumeration

  • A, AAAA, MX, NS, TXT record collection
  • DNS zone information gathering
  • Email server discovery
  • Infrastructure mapping

5. WHOIS Lookup

  • Domain registration information
  • Ownership and contact details
  • Name server identification
  • Expiration date monitoring

๐Ÿค– AI Features

SecScanX integrates AI to enhance security assessments:

  • Intelligent Analysis: Automatically interprets scan results
  • Risk Assessment: Prioritizes findings by severity and impact
  • Remediation Guidance: Provides specific fix recommendations
  • Learning Mode: Explains techniques for educational purposes
  • Contextual Chat: Interactive AI assistant for security questions

๐Ÿ“Š Reporting

Generate professional security reports in multiple formats:

  • HTML Reports: Interactive web-based reports with charts
  • PDF Reports: Professional documents for stakeholders
  • JSON Exports: Machine-readable data for integration
  • Executive Summaries: High-level findings for management

๐Ÿ” Security Considerations

Important: SecScanX is designed for authorized security testing only.

  • Only scan systems you own or have explicit permission to test
  • Some scans may be detected by security systems
  • Follow responsible disclosure practices
  • Respect rate limits and target system resources
  • Review local laws and regulations before testing

๐Ÿค Contributing

We welcome contributions! Please see CONTRIBUTING.md for guidelines.

Development Setup

# Clone and setup development environment
git clone https://github.com/yashab-cyber/SecScanX.git
cd SecScanX

# Install development dependencies
pip install -r backend/requirements-dev.txt
npm install --dev --prefix frontend

# Run tests
pytest backend/tests/
npm test --prefix frontend

๐Ÿ’ฐ Support SecScanX

Help us improve SecScanX by supporting the development! Your donations enable us to:

  • ๐Ÿš€ Develop new features - Advanced scanning modules and AI capabilities
  • ๐Ÿ”’ Enhance security - Better vulnerability detection and exploit research
  • ๐Ÿ“š Create educational content - Tutorials and penetration testing resources
  • ๐ŸŒ Grow the community - Support contributors and maintain infrastructure

๐ŸŒŸ Donation Methods

Cryptocurrency (Preferred):

  • Solana (SOL): 5pEwP9JN8tRCXL5Vc9gQrxRyHHyn7J6P2DCC8cSQKDKT
  • Bitcoin (BTC): bc1qmkptg6wqn9sjlx6wf7dk0px0yq4ynr4ukj2x8c
  • Ethereum (ETH): Contact yashabalam707@gmail.com for current address

Traditional Methods:

๐ŸŽ Supporter Benefits

All donors receive:

  • ๐Ÿ“ง Exclusive monthly newsletter with security insights
  • ๐ŸŽฎ Early access to beta features and new scanning modules
  • ๐Ÿ’ฌ Access to private contributor community
  • ๐Ÿ“š Advanced penetration testing resources and methodologies

๐Ÿ“‹ View Full Donation Details

๐Ÿ† Connect with ZehraSec

Official Channels:

Connect with Yashab Alam (Creator):

๐Ÿ“ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

  • Built with Flask, React, and modern web technologies
  • Integrates nmap, dnspython, and other security tools
  • UI components from Material-UI
  • Charts powered by Recharts
  • AI capabilities via OpenAI API

๐Ÿ“ž Support

โš ๏ธ Disclaimer

SecScanX is for educational and authorized testing purposes only. Users are responsible for complying with applicable laws and obtaining proper authorization before scanning any systems. The developers assume no liability for misuse of this tool.


Made with โค๏ธ by Yashab Alam (Founder of ZehraSec) for the cybersecurity community

About

AI-Assisted Vulnerability Assessment & Penetration Testing Tool SecScanX is an open-source security scanning platform that combines traditional penetration testing tools with artificial intelligence to provide comprehensive vulnerability assessments. Designed for beginners, researchers, and security professionals,

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published