SentinelOps™ is a full-stack Security Operations Center (SOC) platform designed for incident tracking, security monitoring, vulnerability management, response coordination, auditability, and operational security analytics.
The project demonstrates production-oriented backend engineering, REST API design, database modeling, JWT authentication, role-based access control, audit logging, reporting, responsive dashboard design, containerization, automated testing, and cloud deployment.
Built and developed by N V Avinash Krishna.
Frontend:
https://sentinelops-frontend-qsec.onrender.com
API:
https://sentinelops-cybersecurity-incident.onrender.com
Swagger UI:
https://sentinelops-cybersecurity-incident.onrender.com/docs
OpenAPI:
https://sentinelops-cybersecurity-incident.onrender.com/openapi.json
The Render free-tier deployment may require a short startup period after inactivity.
A SOC Analyst account is available for exploring the deployed platform.
Username: analyst
Password: AnalystPass123!
The demo account uses the SOC Analyst role and therefore does not have administrative user-management permissions.
Administrative credentials are intentionally not published.
- Organizational risk score
- Threat-level monitoring
- Critical and open incident metrics
- Average resolution time
- Protected-system statistics
- Incident severity visualization
- Incident trend analytics
- SOC operational status
- Security activity views
- Responsive desktop and mobile interface
- Create, view, update, search, filter, and manage security incidents
- Severity and incident-status tracking
- Incident timelines
- Response association
- Resolution tracking
- Lightweight incident summarization
- Maintain protected-system inventory
- System status monitoring
- Department classification
- Criticality tracking
- Security-event association
- Centralized security-event records
- Severity classification
- Source filtering
- System association
- Search and sorting
- CVE tracking
- Severity classification
- Vulnerability lifecycle status
- Affected-system tracking
- Search and filtering
- Response-action tracking
- Responder attribution
- Incident association
- Response-time measurement
- Response history
SentinelOps implements backend-enforced role-based access control.
Supported roles:
Admin
SOC Analyst
Incident Manager
Viewer
Administrative user-management operations are restricted to the Admin role.
SentinelOps implements:
- JWT access tokens
- Rotating refresh tokens
- Hashed refresh-token storage
- bcrypt password hashing
- OAuth2 password flow for Swagger
- Role-based authorization
- Authentication rate limiting
- Token revocation on logout
- Protected API endpoints
- Explicit production CORS allowlist
- Security response headers
- Content Security Policy
- HTTP Strict Transport Security on HTTPS
- Audit logging
- Spreadsheet-formula sanitization for exports
POST /auth/login
│
▼
Access Token + Refresh Token
│
▼
Authorization: Bearer <access_token>
│
▼
Protected API
Token renewal:
POST /auth/refresh
│
▼
Rotated Access + Refresh Token Pair
Swagger OAuth2 authorization uses:
POST /auth/token
| Capability | Admin | SOC Analyst | Incident Manager | Viewer |
|---|---|---|---|---|
| View operational data | ✅ | ✅ | ✅ | ✅ |
| Manage incidents | ✅ | ✅ | ✅ | ❌ |
| Delete incidents | ✅ | ❌ | ✅ | ❌ |
| Manage systems | ✅ | ✅ | ✅ | ❌ |
| Delete systems | ✅ | ❌ | ❌ | ❌ |
| Manage logs | ✅ | ✅ | ❌ | ❌ |
| Delete logs | ✅ | ❌ | ❌ | ❌ |
| Manage vulnerabilities | ✅ | ✅ | ❌ | ❌ |
| Delete vulnerabilities | ✅ | ❌ | ❌ | ❌ |
| Manage responses | ✅ | ✅ | ✅ | ❌ |
| Delete responses | ✅ | ❌ | ✅ | ❌ |
| Manage users | ✅ | ❌ | ❌ | ❌ |
Authorization is enforced by the backend and is not dependent on frontend controls.
- Python 3.12
- FastAPI
- SQLAlchemy 2.0
- Pydantic
- Uvicorn
- PostgreSQL-compatible SQLAlchemy schema
- SQLite for local development
- Relational models and foreign-key constraints
- Indexed operational fields
- JWT
- OAuth2
- bcrypt
- RBAC dependencies
- Refresh-token rotation
- Authentication rate limiting
- CORS allowlisting
- Security headers
- HTML5
- CSS3
- Vanilla JavaScript
- Chart.js
The production interface uses an Obsidian, Ivory and Metallic Gold glass-style SOC design, with responsive layouts for desktop and mobile devices.
- Docker
- Docker Compose
- GitHub Actions
- Render
- Pytest
- FastAPI TestClient
- HTTPX
- Static JavaScript validation
┌───────────────────────┐
│ SentinelOps Web UI │
│ HTML / CSS / JS │
│ Chart.js │
└───────────┬───────────┘
│ HTTPS
▼
┌───────────────────────┐
│ FastAPI API │
│ Authentication / RBAC │
│ REST Endpoints │
└───────────┬───────────┘
│
┌──────────────────┼──────────────────┐
▼ ▼ ▼
Incident Logic Audit Layer Export/Analytics
│ │ │
└──────────────────┼──────────────────┘
▼
┌───────────────────────┐
│ SQLAlchemy │
│ ORM │
└───────────┬───────────┘
▼
┌───────────────────────┐
│ Database │
│ PostgreSQL / SQLite │
└───────────────────────┘
frontend/pages
Static SOC dashboard and operational workflows
backend/app
FastAPI application
backend/app/routers
API routes organized by business capability
backend/app/services
Business logic, analytics, risk scoring and audit helpers
backend/app/crud
Shared persistence operations
database
Database schema and sample data
docs
Architecture, API and verification documentation
tests
Automated API and integration tests
Additional documentation:
- Architecture
- API Reference
- Project Structure
- Verification Checklist
- Hiring Manager Review
- Deployment Guide
users
│
├────< refresh_tokens
│
└────< audit_logs
systems
│
└────< logs
incidents
│
└────< responses
Audit records capture information including:
user
action
entity
entity_id
before_value
after_value
ip_address
timestamp
Major API groups include:
/auth
/users
/incidents
/systems
/logs
/vulnerabilities
/responses
The deployed Swagger interface provides interactive documentation and authenticated endpoint testing.
Operational records can be exported in:
- CSV
- Microsoft Excel (XLSX)
Export generation includes spreadsheet-formula sanitization to reduce formula-injection risk.
git clone https://github.com/ak-chowdary1012/SentinelOps_CyberSecurity_incident_tracker.git
cd SentinelOps_CyberSecurity_incident_trackerpython -m venv .venv.\.venv\Scripts\python.exe -m pip install -r backend\requirements.txt.\.venv\Scripts\python.exe backend\init_db.py.\.venv\Scripts\python.exe -m uvicorn app.main:app --app-dir backend --host 127.0.0.1 --port 8000In another terminal:
python -m http.server 5500 --directory frontend\pagesOpen:
Frontend:
http://127.0.0.1:5500/dashboard.html
Swagger:
http://127.0.0.1:8000/docs
docker compose up --buildThe backend API will be available locally at:
http://127.0.0.1:8000
SentinelOps is currently deployed on Render as two services:
Static Frontend
│
│ HTTPS / CORS
▼
FastAPI Backend
│
▼
Database
The frontend automatically selects:
http://127.0.0.1:8000
during local development and the production Render API when deployed.
Production CORS uses an explicit frontend-origin allowlist.
Run the complete automated test suite:
python -m pytestCurrent verified result:
7 passed
Validate frontend JavaScript:
node --check frontend/pages/app.jsAdditional project verification includes:
python -m ruff check backend tests
python -m pip_audit -r backend/requirements.txtVerified security/lint results:
No known vulnerabilities found
All checks passed!
SentinelOps demonstrates practical implementation of:
- RESTful API architecture
- Secure authentication
- OAuth2 integration
- JWT lifecycle management
- Backend-enforced RBAC
- Relational database modeling
- Auditability
- Secure export generation
- SOC-oriented analytics
- Responsive frontend engineering
- Dockerized deployment
- Production CORS configuration
- Automated API testing
- Cloud deployment
Planned extensions include:
- Alembic database migrations
- Playwright end-to-end browser tests
- OpenTelemetry tracing
- Structured observability and metrics
- SIEM ingestion adapters
- Alert correlation
- Analyst assignment workflows
- Enhanced incident intelligence
- Additional SOC automation
N V Avinash Krishna
Cybersecurity • Software Engineering • Security Operations
SentinelOps™ was designed and developed as a full-stack cybersecurity engineering project demonstrating secure application architecture, SOC workflows, backend engineering, RBAC, auditability, analytics, and production deployment.
This project is licensed under the MIT License.
© 2026 N V Avinash Krishna