GitHub RadarBlue team tool
An AI-powered multi-model threat detection platform for identifying phishing emails, malicious URLs, Smishing SMS and Network Intrusion Detection. Primary language: JavaScript. 13 stars.
Project links:Open GitHub projectBack to radar
An intelligent threat detection system for identifying phishing emails and malicious URLs.
QuantShield is an intelligent cybersecurity platform designed to detect phishing emails and malicious URLs using machine learning. The system combines trained classification models with a modern web interface to provide real-time threat analysis, risk assessment, and detailed detection reports.
<div align="center">
    
</div>
Cyber threats such as phishing campaigns and malicious websites continue to be among the most common attack vectors. ThreatLensAI helps users identify and analyze suspicious emails and URLs by leveraging machine learning models trained on labeled security datasets.
The platform provides fast and reliable threat detection through an interactive web application, enabling users to assess potential risks before interacting with suspicious content.
Frontend (React + Vite)
│
▼
Backend (Flask API)
│
▼
Machine Learning Layer
├── Email Phishing Detection
└── URL Threat DetectionQuantShield/
│
├── backend/
│ ├── app.py
│ └── requirements.txt
│
├── frontend/
│ ├── src/
│ ├── package.json
│ └── vite.config.js
│
├── ml/
│ ├── email/
│ └── url/
│
├── train_with_xgboost.py
├── evaluate_on_new_dataset.py
└── README.mdgit clone https://github.com/Seelam-Mohith/ThreatLensAI.git
cd ThreatLensAIcd backend
python -m venv venv
# Windows
venv\Scripts\activate
# Linux/macOS
source venv/bin/activate
pip install -r requirements.txtcd frontend
npm installcd backend
python app.pycd frontend
npm run devThe application will be available locally through the Vite development server.
Seelam Mohith
GitHub: https://github.com/Seelam-Mohith