Hermetiq is a comprehensive web application security scanner that performs automated vulnerability assessments and provides detailed, actionable security reports. Built with modern web technologies, it offers real-time scanning capabilities with an intuitive dashboard interface.
- Automated Vulnerability Detection: Comprehensive security scans that identify critical, high, medium, and low-severity vulnerabilities
- Real-time Streaming: Live vulnerability discovery with Server-Sent Events (SSE) for immediate feedback
- Risk Assessment: Intelligent risk scoring algorithm that evaluates overall security posture
- Detailed Reporting: Structured vulnerability reports with evidence, explanations, and remediation guidance
- Severity Breakdown: Visual representation of vulnerability distribution across severity levels
- Risk Score Visualization: Color-coded risk indicators with intuitive scoring system
- Interactive Dashboards: Beautiful, responsive dashboard with animated data updates
- Progress Tracking: Real-time progress indicators during security scans
- Modern Tech Stack: Built with Next.js 15, React 18, TypeScript, and Tailwind CSS
- Component Library: Customizable UI components built on shadcn/ui
- Type Safety: Full TypeScript coverage for reliable, maintainable code
- Responsive Design: Mobile-first design that works across all devices
- GitHub Integration: Scan repositories and analyze code security
- Multiple API Support: Configurable API keys for various security tools
- Webhook Support: Automated notifications and integrations
- Database Integration: PostgreSQL with Prisma ORM for data persistence
- Framework: Next.js 15 with App Router
- UI Library: shadcn/ui components with Tailwind CSS
- State Management: Zustand for client-side state
- Routing: TanStack Router for type-safe routing
- Forms: React Hook Form with Zod validation
- Real-time: Server-Sent Events for live updates
- Framework: FastAPI for high-performance, async APIs
- Language: Python 3.10+ with full type safety
- Database: PostgreSQL with SQLModel and Pydantic
- Authentication: Clerk for secure user management
- Security Tools: Claude Code SDK for AI-powered security analysis
- GitHub Integration: PyGitHub for repository scanning and analysis
- Background Jobs: Async task processing with proper error handling
- Testing: Comprehensive test suite with pytest and pytest-asyncio
- Code Quality: Ruff for fast linting and formatting, Pyright for type checking
- Logging: Structured logging with Loguru
- Security: Input validation, rate limiting, and secure data handling
- Monorepo: Turborepo with pnpm for efficient package management
- Deployment: Vercel-ready configuration
- Database: Neon PostgreSQL hosting
- Storage: Vercel Blob for file storage
- Monitoring: Sentry for error tracking, PostHog for analytics
- Node.js 18+ and pnpm 10.5.2+
- Python 3.11+ with Poetry for backend
- PostgreSQL database (local or cloud)
- Git for version control
git clone <repository-url>
cd hermetiq
pnpm install
Copy environment files and configure:
# Frontend environment
cp frontend/.env.example frontend/.env.local
# Backend environment
cp backend/.env.example backend/.env
# Configure your API keys and database connection
# Run database migrations
pnpm migrate
# (Optional) Seed with sample data
pnpm db:seed
# Start all services (frontend, backend, database)
pnpm dev
Visit http://localhost:3000
to access the application.
- Navigate to Scan: Go to the scan section in the dashboard
- Configure Target: Enter the target URL or repository
- Start Scan: Click "Start Security Audit"
- Monitor Progress: Watch real-time progress and vulnerability discovery
- View Results: Access detailed reports with risk scores and findings
- Access Settings: Navigate to Settings β API Keys
- Configure Integrations: Add API keys for security tools
- Save Configuration: Keys are encrypted and securely stored
- Report Dashboard: Access vulnerability reports from the main dashboard
- Detailed Analysis: Click on individual findings for evidence and remediation
- Export Options: Download reports in various formats
- Historical Data: View scan history and trends
hermetiq/
βββ frontend/ # Next.js React application
β βββ src/
β β βββ components/ # Reusable UI components
β β βββ routes/ # Page routes and layouts
β β βββ stores/ # Zustand state management
β β βββ lib/ # Utilities and helpers
β β βββ trpc/ # API client configuration
βββ backend/ # FastAPI Python application
β βββ app/
β β βββ api/ # API routes and endpoints
β β βββ core/ # Configuration and utilities
β β βββ integrations/ # External service integrations
β β βββ models/ # Database models
βββ packages/ # Shared packages and configurations
β βββ design-system/ # UI component library
β βββ database/ # Database utilities and schemas
β βββ auth/ # Authentication utilities
# Development
pnpm dev # Start all development servers
pnpm dev:frontend # Start only frontend
pnpm dev:backend # Start only backend
# Building
pnpm build # Build all applications
pnpm build:frontend # Build frontend only
# Testing
pnpm test # Run all tests
pnpm test:frontend # Run frontend tests
# Database
pnpm migrate # Run database migrations
pnpm db:studio # Open Prisma Studio
# Code Quality
pnpm lint # Run linting
pnpm format # Format code with Prettier