{"id":26291057,"url":"https://github.com/qvineox/domain-threat-intelligence-agent-mirror","last_synced_at":"2026-04-22T16:32:19.026Z","repository":{"id":220150894,"uuid":"741798401","full_name":"Qvineox/domain-threat-intelligence-agent-mirror","owner":"Qvineox","description":"Masters thesis in cyber security project on malicious domains detection. Scanning agent. Mirror from GitLab.","archived":false,"fork":false,"pushed_at":"2024-05-04T17:38:49.000Z","size":181,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-10T11:44:36.709Z","etag":null,"topics":["cybersecurity","docker","network-scanner","threat-hunting","threat-intelligence"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Qvineox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-01-11T06:09:19.000Z","updated_at":"2024-02-14T14:32:42.000Z","dependencies_parsed_at":"2024-03-15T12:43:06.897Z","dependency_job_id":"2cb3d97a-2494-4e84-940d-a24f34df36a3","html_url":"https://github.com/Qvineox/domain-threat-intelligence-agent-mirror","commit_stats":null,"previous_names":["qvineox/domain-threat-intelligence-agent-mirror"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Qvineox/domain-threat-intelligence-agent-mirror","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qvineox%2Fdomain-threat-intelligence-agent-mirror","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qvineox%2Fdomain-threat-intelligence-agent-mirror/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qvineox%2Fdomain-threat-intelligence-agent-mirror/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qvineox%2Fdomain-threat-intelligence-agent-mirror/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Qvineox","download_url":"https://codeload.github.com/Qvineox/domain-threat-intelligence-agent-mirror/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Qvineox%2Fdomain-threat-intelligence-agent-mirror/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32145480,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T15:33:03.595Z","status":"ssl_error","status_checked_at":"2026-04-22T15:30:42.712Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cybersecurity","docker","network-scanner","threat-hunting","threat-intelligence"],"created_at":"2025-03-15T00:33:19.938Z","updated_at":"2026-04-22T16:32:14.018Z","avatar_url":"https://github.com/Qvineox.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Domain Threat Intelligence Agent\n\nMaster’s thesis in cybersecurity project on malicious domains' detection. Scanning agent.\nUses scanning capabilities to detect malicious activity ob remotes hosts.\n\nThis project is mirrored from GitLab.\n\nLinks:\n\n- [Main project on GitLab](https://gitlab.qvineox.ru/masters/domain-threat-intelligence-agent)\n- [Mirror on GitHub](https://github.com/Qvineox/domain-threat-intelligence-agent-mirror)\n- [Master's thesis paper](https://cloud.qvineox.ru/index.php/s/wLg8bncwQWz9Tff)\n\nEcosystem:\n\n- Hub\n    - Main project on [GitLab](https://gitlab.qvineox.ru/masters/domain-threat-intelligence-hub)\n    - Mirror on [GitHub](https://github.com/Qvineox/domain-threat-intelligence-hub-mirror)\n- API\n    - Main project on [GitLab](https://gitlab.qvineox.ru/masters/domain-threat-intelligence-api)\n    - Mirror on [GitHub](https://github.com/Qvineox/domain-threat-intelligence-api-mirror)\n\n    \n## Project structure\n\nThe Go language maintainer has no strong convention about structuring a project in Go. However, one layout has emerged\nover the years: [project-layout](https://github.com/golang-standards/project-layout).\nIf our project is small enough (only a few files), or if our organization has already created its standard, it may not\nbe worth using or migrating to project-layout. Other-wise, it might be worth considering. Let’s look at this layout and\nsee what the main directories are:\n\n- `/cmd` - The main source files.\n    - `/app` - Application startup logic.\n    - `/core` - Main application code.\n        - `/entities` - Core domain model of the application.\n        - `/repos` - Repositories to manipulate stored data.\n        - `/services` - Defines domain logic using domain models.\n    - `/oss` - Open Source scanners' code\n- `/internal` - Private code not importing to other applications or libraries.\n- `/pkg` - Public code exposed to others.\n- `/test` - Additional external tests and test data.\n- `/configs` - Configuration files.\n- `/docs` - Design and user documents.\n- `/examples` - Examples for our application and/or a public library.\n- `/api` - API contract files (Swagger, Protocol Buffers, etc.).\n    - `/proto` - Files used in Protocol Buffers/gRPC communication.\n    - `/services` - Web API endpoints.\n- `/web` - Web application-specific assets (static files, etc.).\n- `/build` - Packaging and continuous integration (CI) files.\n    - `/bin` - Binary and compilation files.\n- `/scripts` - Scripts for analysis, installation, and so on.\n    - `/docker` - Docker compose files to start the application.\n    - `/idea` - IDE development scripts.\n- `/vendor` - Application dependencies (for example, Go modules dependencies).\n\nThere’s no /src directory like in some other languages. The rationale is that /src is too generic; hence, this layout\nfavors directories such as /cmd, /internal, or /pkg.\n\n\u003e Source: Manning, 100 Go Mistakes and How to Avoid Them\n\n## Security and compliance\n\n\u003e TODO: add security and compliance data...\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqvineox%2Fdomain-threat-intelligence-agent-mirror","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqvineox%2Fdomain-threat-intelligence-agent-mirror","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqvineox%2Fdomain-threat-intelligence-agent-mirror/lists"}