{"id":49889252,"url":"https://github.com/santhsecurity/truestack","last_synced_at":"2026-05-15T20:09:10.583Z","repository":{"id":353866092,"uuid":"1193493762","full_name":"santhsecurity/truestack","owner":"santhsecurity","description":"Security-aware technology fingerprinting — detects what is really running, not what the version string claims","archived":false,"fork":false,"pushed_at":"2026-04-25T23:04:39.000Z","size":38,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-26T01:12:19.475Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://santh.dev","language":"Rust","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/santhsecurity.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"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-03-27T09:34:08.000Z","updated_at":"2026-04-25T23:04:44.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/santhsecurity/truestack","commit_stats":null,"previous_names":["santhsecurity/truestack"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/santhsecurity/truestack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santhsecurity%2Ftruestack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santhsecurity%2Ftruestack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santhsecurity%2Ftruestack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santhsecurity%2Ftruestack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/santhsecurity","download_url":"https://codeload.github.com/santhsecurity/truestack/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santhsecurity%2Ftruestack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33078187,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T20:05:40.333Z","status":"ssl_error","status_checked_at":"2026-05-15T20:05:38.672Z","response_time":103,"last_error":"SSL_read: 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":[],"created_at":"2026-05-15T20:09:09.837Z","updated_at":"2026-05-15T20:09:10.574Z","avatar_url":"https://github.com/santhsecurity.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# truestack\n\nSecurity-aware technology fingerprinting for web servers.\n\nUnlike traditional fingerprinting tools that report what the version string claims, `truestack` is designed to determine the **true** security posture of a target — including detection of backported patches, behavioural differential probing, and CVE correlation.\n\n## Features\n\n- **YAML-driven rule engine** — signal-based detection from HTTP headers, response bodies, and cookies.\n- **Security header auditing** — checks for HSTS, CSP, X-Frame-Options, and more. Includes deep CSP bypass analysis.\n- **Favicon hashing** — Shodan-compatible MurmurHash3 for cross-service pivot (`http.favicon.hash:{value}`).\n- **Zero-config core** — fingerprinting runs on raw data `\u0026[(K, V)]` and `\u0026str` without requiring a specific HTTP client. Optional `fetch` feature provides async fetching helpers.\n\n## Usage\n\n```rust\nuse truestack::fingerprints;\nuse truestack::security_headers;\n\nfn main() {\n    // 1. Detect technologies from headers and body\n    let headers = vec![\n        (\"Server\".to_string(), \"nginx/1.21.0\".to_string()),\n        (\"X-Powered-By\".to_string(), \"Express\".to_string()),\n    ];\n    let body = \"\u003chtml\u003e\u003cbody\u003e__NEXT_DATA__\u003c/body\u003e\u003c/html\u003e\";\n    \n    let techs = fingerprints::detect(\u0026headers, body);\n    for tech in techs {\n        println!(\"Found: {} (version: {:?})\", tech.name, tech.version);\n    }\n    \n    // 2. Audit security headers\n    let findings = security_headers::audit(\u0026headers);\n    for finding in findings {\n        println!(\"Security Finding [{}]: {}\", finding.severity.as_str(), finding.title);\n        println!(\"  {}\", finding.detail);\n    }\n}\n```\n\n### Optional Features\n\n- **`fetch`**: Enables `truestack::favicon::fetch_hash` which uses `reqwest` to download a favicon and compute its Shodan hash.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanthsecurity%2Ftruestack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsanthsecurity%2Ftruestack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanthsecurity%2Ftruestack/lists"}