{"id":44635547,"url":"https://github.com/trikusec/trikusec","last_synced_at":"2026-05-01T14:00:37.323Z","repository":{"id":324115154,"uuid":"829355493","full_name":"TrikuSec/trikusec","owner":"TrikuSec","description":"TrikuSec is a centralized Linux server auditing and compliance management platform","archived":false,"fork":false,"pushed_at":"2026-04-14T08:36:21.000Z","size":11301,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-04-14T10:25:21.731Z","etag":null,"topics":["compiance","cybersecurity","infosec","linux","logs","lynis","ransomware","security"],"latest_commit_sha":null,"homepage":"https://trikusec.github.io/trikusec/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TrikuSec.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2024-07-16T09:07:37.000Z","updated_at":"2026-04-14T08:36:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"7eb56741-8e22-4150-b99e-357a27597afd","html_url":"https://github.com/TrikuSec/trikusec","commit_stats":null,"previous_names":["compleasy/compleasy","trikusec/trikusec"],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/TrikuSec/trikusec","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TrikuSec%2Ftrikusec","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TrikuSec%2Ftrikusec/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TrikuSec%2Ftrikusec/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TrikuSec%2Ftrikusec/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TrikuSec","download_url":"https://codeload.github.com/TrikuSec/trikusec/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TrikuSec%2Ftrikusec/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32499691,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["compiance","cybersecurity","infosec","linux","logs","lynis","ransomware","security"],"created_at":"2026-02-14T17:22:22.530Z","updated_at":"2026-05-01T14:00:37.275Z","avatar_url":"https://github.com/TrikuSec.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TrikuSec\n\n**TrikuSec** is a centralized Linux server auditing and compliance management platform built on [Lynis](https://cisofy.com/lynis/). It collects, stores, and analyzes security audit reports from multiple Linux servers in one place, enabling centralized monitoring and policy compliance management across your infrastructure.\n\n## Use Cases\n\nTrikuSec is ideal for:\n\n- **Security Compliance Monitoring**: Ensure servers meet security policies and regulatory requirements\n- **Infrastructure Auditing**: Track security posture across multiple servers from a single dashboard\n- **Change Tracking**: Monitor changes between audit runs to identify security drift\n- **Policy Enforcement**: Automatically evaluate compliance against organizational policies\n- **Centralized Reporting**: Single point of visibility for all server audits across your infrastructure\n\n## Features\n\n### Core Capabilities\n\n- **Security Overview Dashboard**: Centralized dashboard with at-a-glance visibility into compliance rates, warning counts, OS distribution, top security issues, and devices requiring attention\n- **Centralized Audit Collection**: Receives audit reports from multiple Linux servers via Lynis clients, storing full reports and generating diff reports to track changes over time\n- **Device Management**: Tracks all monitored servers with metadata including hostname, OS, distribution, version, and compliance status\n- **Policy \u0026 Compliance Management**: Define custom compliance rules using a query language and automatically evaluate devices against assigned policies\n- **Report Analysis**: View complete audit reports, track changes between audits, and analyze historical compliance trends\n- **PDF Export**: Export comprehensive device reports to PDF format for documentation and compliance audits\n- **Web Interface**: User-friendly interface for viewing devices, compliance status, policies, and reports\n- **API Integration**: Lynis-compatible API endpoints for seamless integration with existing Lynis installations\n\n### Screenshots\n\n**Security Overview Dashboard**\nThe main dashboard provides a comprehensive security overview with summary cards showing compliance rates, warning counts, OS distribution, top security issues across your infrastructure, and a dedicated section highlighting devices that require immediate attention.\n\n![TrikuSec Devices List](docs/assets/img/trikusec-devices.png)\n\n![Device Detail View](docs/assets/img/trikusec-device-detail.png)\n\n## Quick Start\n\n1. **Download `docker-compose.yml`** from the [repository](https://github.com/trikusec/trikusec/blob/main/docker-compose.yml)\n\n2. **Create a `.env` file** with your configuration:\n   ```bash\n   # Generate a secure SECRET_KEY\n   python3 -c \"import secrets; print(secrets.token_urlsafe(50))\"\n   \n   # Create .env file\n   cat \u003e .env \u003c\u003cEOF\n   SECRET_KEY=your-generated-secret-key-here\n   TRIKUSEC_DOMAIN=localhost\n   EOF\n   ```\n\n3. **Start TrikuSec**:\n   ```bash\n   docker compose up -d\n   ```\n\n4. **Access TrikuSec** at `https://localhost:8000`\n   - Default credentials: `admin` / `trikusec`\n   - ⚠️ **Change the default password in production!**\n\n### Production Deployment\n\nFor production, simply change the domain in your `.env` file:\n\n```bash\nSECRET_KEY=your-generated-secret-key-here\nTRIKUSEC_DOMAIN=trikusec.yourdomain.com\nTRIKUSEC_ADMIN_PASSWORD=your-secure-password\n```\n\nThis automatically configures:\n- Admin UI: `https://trikusec.yourdomain.com:8000`\n- Lynis API: `https://trikusec.yourdomain.com:8001`\n- Allowed hosts: `localhost,trikusec.yourdomain.com`\n- SSL certificates with CN: `trikusec.yourdomain.com`\n\n## Documentation\n\n📚 **Full documentation available at:** [https://trikusec.github.io/trikusec/](https://trikusec.github.io/trikusec/)\n\nThe documentation includes:\n- **Installation** - Detailed installation guides\n- **Configuration** - Environment variables and security settings\n- **Usage** - Dashboard, policies, and reports guides\n- **API Reference** - Complete API documentation\n- **Development** - Contributing and development setup\n\n## Security Philosophy\n\nTrikuSec follows a **read-only security model** - it only receives audit data from your servers and never pushes changes or executes commands. The only requirement on monitored servers is [Lynis](https://cisofy.com/lynis/), a well-established open-source tool available in standard Linux repositories.\n\n## License\n\nTrikuSec is licensed under the **GNU General Public License v3.0** (GPL-3.0).\n\nSee the [LICENSE](LICENSE) file for the full license text.\n\n## Acknowledgments\n\nTrikuSec is built on [Lynis](https://cisofy.com/lynis/), an excellent open-source security auditing tool. We are grateful to the Lynis project and its community for providing such a robust foundation.\n\n### Important Note\n\n**TrikuSec is not a professional product.** This is an open-source project in active development. If you are looking for a robust, production-ready security solution with professional support, service level agreements, and enterprise features, we recommend considering [Lynis Enterprise](https://cisofy.com/pricing/) by CISOfy.\n\n\u003e **Note:** We have no relationship, affiliation, or partnership with CISOfy. This recommendation is made solely to help users find appropriate solutions for their needs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrikusec%2Ftrikusec","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrikusec%2Ftrikusec","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrikusec%2Ftrikusec/lists"}