{"id":51317604,"url":"https://github.com/donatoreis/blackhorn-modules","last_synced_at":"2026-07-01T09:01:34.124Z","repository":{"id":366247468,"uuid":"1275525778","full_name":"DonatoReis/blackhorn-modules","owner":"DonatoReis","description":"Native Go security modules for the BLACKHORN orchestration platform.","archived":false,"fork":false,"pushed_at":"2026-06-20T23:01:50.000Z","size":1091,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-21T01:04:05.454Z","etag":null,"topics":["blackhorn","cybersecurity","golang","security-tools","tauri"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DonatoReis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-20T20:05:55.000Z","updated_at":"2026-06-20T23:00:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/DonatoReis/blackhorn-modules","commit_stats":null,"previous_names":["donatoreis/blackhorn-modules"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/DonatoReis/blackhorn-modules","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DonatoReis%2Fblackhorn-modules","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DonatoReis%2Fblackhorn-modules/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DonatoReis%2Fblackhorn-modules/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DonatoReis%2Fblackhorn-modules/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DonatoReis","download_url":"https://codeload.github.com/DonatoReis/blackhorn-modules/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DonatoReis%2Fblackhorn-modules/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34999792,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-01T02:00:05.325Z","response_time":130,"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":["blackhorn","cybersecurity","golang","security-tools","tauri"],"created_at":"2026-07-01T09:01:33.078Z","updated_at":"2026-07-01T09:01:34.112Z","avatar_url":"https://github.com/DonatoReis.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BLACKHORN Modules\n\nNative Go security modules used by the\n[BLACKHORN](https://github.com/DonatoReis/blackhorn) desktop orchestrator.\n\nThe repository contains 122 registered modules for reconnaissance, DNS,\nnetwork discovery, HTTP auditing, web vulnerability checks, cloud analysis,\nthreat intelligence, Brazilian OSINT, and utility workflows. Modules return\ntyped findings and run in-process without requiring a separate executable.\n\n## Design goals\n\n- High precision: candidates and confirmed observations are explicitly\n  separated.\n- Bounded execution: network fan-out has context, concurrency, response-size,\n  runtime, and result limits.\n- Explainability: findings carry source, confidence, validation state, and\n  context-promotion metadata.\n- Testability: network integrations use injected clients, resolvers, or\n  dialers and local test servers.\n- Composability: every module implements one small interface and is described\n  in the central registry.\n\n## Requirements\n\n- Go 1.26.4 or a newer compatible patch release.\n\n## Use\n\n```go\npackage main\n\nimport (\n\t\"context\"\n\t\"log\"\n\n\t\"github.com/DonatoReis/blackhorn-modules/pkg/module\"\n\t\"github.com/DonatoReis/blackhorn-modules/pkg/registry\"\n)\n\nfunc main() {\n\tnative, err := registry.New(\"headeraudit\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tfindings, err := native.Run(context.Background(), module.Input{\n\t\tTarget: \"https://example.com\",\n\t})\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tlog.Printf(\"%d findings\", len(findings))\n}\n```\n\nBrowse available modules through `registry.All()` or\n[`pkg/registry/catalog.go`](pkg/registry/catalog.go).\n\n## Validate\n\n```bash\ngo fmt ./...\ngo vet ./...\ngo test -race ./...\ngo build ./...\ngo run golang.org/x/vuln/cmd/govulncheck@latest ./...\n```\n\nBenchmarks live in [`benchmarks`](benchmarks), and fuzz targets live in\n[`fuzz`](fuzz).\n\n## Contributing\n\nRead [CONTRIBUTING.md](CONTRIBUTING.md), [SECURITY.md](SECURITY.md), and the\n[Code of Conduct](CODE_OF_CONDUCT.md). Contributions should include\ndeterministic tests and explain how evidence, confidence, false positives, and\nexecution limits are handled.\n\n## Responsible use\n\nUse these modules only on assets you own or are explicitly authorized to\nassess. Do not submit real credentials, private target data, or unauthorized\nscan output.\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdonatoreis%2Fblackhorn-modules","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdonatoreis%2Fblackhorn-modules","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdonatoreis%2Fblackhorn-modules/lists"}