{"id":21206480,"url":"https://github.com/fluentci-io/trufflehog-plugin","last_synced_at":"2026-01-19T09:35:15.071Z","repository":{"id":235255184,"uuid":"788824782","full_name":"fluentci-io/trufflehog-plugin","owner":"fluentci-io","description":"Set up your CI/CD Pipeline with a specific version of trufflehog","archived":false,"fork":false,"pushed_at":"2024-08-06T12:18:59.000Z","size":12,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-08T23:29:33.126Z","etag":null,"topics":["continuous-delivery","continuous-integration","plugin","rust","trufflehog","wasm","webassembly"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/fluentci-io.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}},"created_at":"2024-04-19T06:48:22.000Z","updated_at":"2024-08-06T12:18:22.000Z","dependencies_parsed_at":"2024-08-06T14:20:13.838Z","dependency_job_id":null,"html_url":"https://github.com/fluentci-io/trufflehog-plugin","commit_stats":null,"previous_names":["fluentci-io/trufflehog-plugin"],"tags_count":2,"template":true,"template_full_name":null,"purl":"pkg:github/fluentci-io/trufflehog-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluentci-io%2Ftrufflehog-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluentci-io%2Ftrufflehog-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluentci-io%2Ftrufflehog-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluentci-io%2Ftrufflehog-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fluentci-io","download_url":"https://codeload.github.com/fluentci-io/trufflehog-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluentci-io%2Ftrufflehog-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28565001,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T08:53:44.001Z","status":"ssl_error","status_checked_at":"2026-01-19T08:52:40.245Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["continuous-delivery","continuous-integration","plugin","rust","trufflehog","wasm","webassembly"],"created_at":"2024-11-20T20:55:51.988Z","updated_at":"2026-01-19T09:35:15.049Z","avatar_url":"https://github.com/fluentci-io.png","language":"Rust","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"# Trufflehog Plugin\n\n[![fluentci pipeline](https://shield.fluentci.io/x/trufflehog)](https://pkg.fluentci.io/trufflehog)\n[![ci](https://github.com/fluentci-io/trufflehog-plugin/actions/workflows/ci.yml/badge.svg)](https://github.com/fluentci-io/trufflehog-plugin/actions/workflows/ci.yml)\n\nThis plugin sets up your CI/CD pipeline with a specific version of [trufflehog](https://github.com/trufflesecurity/trufflehog).\n\n## 🚀 Usage\n\nAdd the following command to your CI configuration file:\n\n```bash\nfluentci run --wasm trufflehog setup\n```\n\n## Functions\n\n| Name          | Description                                  |\n| ------------- | -------------------------------------------- |\n| setup         | Installs a specific version of trufflehog.   |\n| git           | Find credentials in git repositories         |\n| github        | Find credentials in GitHub repositories.     |\n| gitlab        | Find credentials in GitLab repositories.     |\n| filesystem    | Find credentials in a filesystem.            |\n| s3            | Find credentials in S3 buckets.              |\n| gcs           | Find credentials in GCS buckets              |\n| syslog        | Scan syslog                                  |\n| circleci      | Scan CircleCI                                |\n| docker        | Scan Docker Image                            |\n| travisci      | Scan TravisCI                                |\n| postman       | Scan Postman                                 |\n| jenkins       | Scan Jenkins                                 |\n| elasticsearch | Scan Elasticsearch                           |\n| huggingface   | Scan Huggingface                             |\n\n## Code Usage\n\nAdd `fluentci-pdk` crate to your `Cargo.toml`:\n\n```toml\n[dependencies]\nfluentci-pdk = \"0.2.1\"\n```\n\nUse the following code to call the plugin:\n\n```rust\nuse fluentci_pdk::dag;\n\n// ...\n\ndag().call(\"https://pkg.fluentci.io/trufflehog@v0.1.1?wasm=1\", \"setup\", vec![\"latest\"])?;\n```\n\n## 📚 Examples\n\nGithub Actions:\n\n```yaml\n- name: Setup Fluent CI CLI\n  uses: fluentci-io/setup-fluentci@v5\n  with:\n    wasm: true\n    plugin: trufflehog\n    args: |\n      setup\n- name: Show trufflehog version\n  run: |\n    type trufflehog\n    trufflehog --version\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluentci-io%2Ftrufflehog-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffluentci-io%2Ftrufflehog-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluentci-io%2Ftrufflehog-plugin/lists"}