GitHub RadarBlue team tool
PhishGuard — AI-Powered Phishing Email Detector A lightweight, single-file web app that uses Claude claude-sonnet-4-20250514 to analyze emails for phishing threats in real time. Paste a suspicious email's sender, subject, and body — and get an instant AI-generated threat report with a risk score and a plain-language summary. Primary language: HTML. 1 stars.
Project links:Open GitHub projectBack to radar
PhishGuard is a React frontend plus a local Node backend for phishing email analysis. The frontend sends email content to POST /api/analyze, and the backend securely forwards that request to your deployed Hugging Face Gradio Space so your token stays off the client.
frontend/ - Vite + React user interfacebackend/ - lightweight Node API bridge for the deployed Hugging Face Spacebackend/.env.example into your environment.HUGGING_FACE_SPACE_ID if you want to override the default Space ID of prajjwal1711/email-phishing-detector.HUGGING_FACE_API_TOKEN if your Space is private. For a public Space, you can leave it empty.npm install inside backend/.backend/ with npm run start or npm run dev.frontend/.npm install if dependencies are not already installed.npm run dev.During development, Vite proxies /api/* requests to http://localhost:8787, so the React app can call the backend without changing the fetch path in the UI code.