{"id":13505825,"url":"https://github.com/flatt-security/shisho","last_synced_at":"2025-03-30T00:31:39.654Z","repository":{"id":37123451,"uuid":"390314995","full_name":"flatt-security/shisho","owner":"flatt-security","description":"Lightweight static analyzer for several programming languages","archived":false,"fork":false,"pushed_at":"2023-08-07T06:55:18.000Z","size":8229,"stargazers_count":371,"open_issues_count":38,"forks_count":15,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-11-16T01:32:57.491Z","etag":null,"topics":["code-analysis","devsecops","go","rust","security","static-analysis","terraform","terraform-security"],"latest_commit_sha":null,"homepage":"https://docs.shisho.dev","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flatt-security.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}},"created_at":"2021-07-28T10:46:11.000Z","updated_at":"2024-11-04T23:43:32.000Z","dependencies_parsed_at":"2024-01-03T02:28:50.466Z","dependency_job_id":"a5144625-2162-4f0b-822c-48d2c26705ab","html_url":"https://github.com/flatt-security/shisho","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flatt-security%2Fshisho","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flatt-security%2Fshisho/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flatt-security%2Fshisho/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flatt-security%2Fshisho/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flatt-security","download_url":"https://codeload.github.com/flatt-security/shisho/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246262490,"owners_count":20749170,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["code-analysis","devsecops","go","rust","security","static-analysis","terraform","terraform-security"],"created_at":"2024-08-01T00:01:14.759Z","updated_at":"2025-03-30T00:31:34.639Z","avatar_url":"https://github.com/flatt-security.png","language":"Rust","funding_links":[],"categories":["Rust","Tools","Application Security","go"],"sub_categories":["Community providers","SAST"],"readme":"# shisho\n\n![shisho](./docs/public/images/header.png)\n\n[![GitHub Release][release-img]][release]\n[![GitHub Marketplace][marketplace-img]][marketplace]\n[![License][license-img]][license]\n[![Documentation][documentation-img]][documentation]\n[![Test][test-img]][test]\n[![Playground][playground-img]][playground]\n\nShisho is a lightweight static analyzer for developers.\n\n### Please see [the usage documentation](https://docs.shisho.dev) for further information.\n\n![demo](./docs/content/images/shisho-demo.gif)\n\n## Try at Playground\n\nYou can try Shisho at [our playground](https://play.shisho.dev).\n\n## Try with Docker\n\nYou can try shisho in your machine as follows:\n\n```sh\necho \"func test(v []string) int { return len(v) + 1; }\" | docker run -i ghcr.io/flatt-security/shisho-cli:latest find \"len(:[...])\" --lang=go\n```\n\n```sh\necho \"func test(v []string) int { return len(v) + 1; }\" \u003e file.go\ndocker run -i -v $(pwd):/workspace ghcr.io/flatt-security/shisho-cli:latest find \"len(:[...])\" --lang=go /workspace/file.go\n```\n\n## Install with pre-built binaries\n\nWhen you'd like to run shisho outside docker containers, please follow the instructions below:\n\n### Linux / macOS\n\nRun the following command(s):\n\n```sh\n# Linux\nwget https://github.com/flatt-security/shisho/releases/latest/download/build-x86_64-unknown-linux-gnu.zip -O shisho.zip\nunzip shisho.zip\nchmod +x ./shisho\nmv ./shisho /usr/local/bin/shisho\n\n# macOS\nwget https://github.com/flatt-security/shisho/releases/latest/download/build-x86_64-apple-darwin.zip -O shisho.zip\nunzip shisho.zip\nchmod +x ./shisho\nmv ./shisho /usr/local/bin/shisho\n```\n\nThen you'll see a shisho's executable in `/usr/local/bin`.\n\n### Windows\n\nDownload the prebuild binary from [releases](https://github.com/flatt-security/shisho/releases) and put it into your `%PATH%` directory.\n\nIf you're using [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10), you can install shisho with the above instructions.\n\n# More\n\n- We're also building [Shisho as a Service](https://shisho.dev) to make Security-as-Code more accessible.\n- If you need direct support, you can contact us at `contact@flatt.tech`.\n\n[release]: https://github.com/flatt-security/shisho/releases/latest\n[release-img]: https://img.shields.io/github/release/flatt-security/shisho.svg?logo=github\n[marketplace]: https://github.com/marketplace/actions/shisho-action\n[marketplace-img]: https://img.shields.io/badge/marketplace-shisho--action-blue?logo=github\n[license]: https://github.com/flatt-security/shisho/blob/main/LICENSE\n[license-img]: https://img.shields.io/github/license/flatt-security/shisho\n[documentation]: https://docs.shisho.dev\n[documentation-img]: https://img.shields.io/badge/docs-docs.shisho.dev-purple\n[playground]: https://play.shisho.dev\n[playground-img]: https://img.shields.io/badge/playground-playground.shisho.dev-purple\n[test]: https://github.com/flatt-security/shisho/actions/workflows/test.yml\n[test-img]: https://github.com/flatt-security/shisho/actions/workflows/test.yml/badge.svg?branch=main\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflatt-security%2Fshisho","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflatt-security%2Fshisho","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflatt-security%2Fshisho/lists"}