shisho
v0.5.2


Shisho는 개발자를위한 가벼운 정적 분석기입니다.

우리 놀이터에서 시쇼를 시험해 볼 수 있습니다.
다음과 같이 컴퓨터에서 Shisho를 사용해 볼 수 있습니다.
echo " func test(v []string) int { return len(v) + 1; } " | docker run -i ghcr.io/flatt-security/shisho-cli:latest find " len(:[...]) " --lang=go echo " func test(v []string) int { return len(v) + 1; } " > file.go
docker run -i -v $( pwd ) :/workspace ghcr.io/flatt-security/shisho-cli:latest find " len(:[...]) " --lang=go /workspace/file.goDocker Containers 외부에서 Shisho를 실행하려면 아래 지침을 따르십시오.
다음 명령을 실행하십시오.
# Linux
wget https://github.com/flatt-security/shisho/releases/latest/download/build-x86_64-unknown-linux-gnu.zip -O shisho.zip
unzip shisho.zip
chmod +x ./shisho
mv ./shisho /usr/local/bin/shisho
# macOS
wget https://github.com/flatt-security/shisho/releases/latest/download/build-x86_64-apple-darwin.zip -O shisho.zip
unzip shisho.zip
chmod +x ./shisho
mv ./shisho /usr/local/bin/shisho 그런 다음 /usr/local/bin 에서 Shisho의 실행 파일을 볼 수 있습니다.
Prebuild Binary를 릴리스에서 다운로드하여 %PATH% 디렉토리에 넣으십시오.
Linux 용 Windows 서브 시스템을 사용하는 경우 위의 지침으로 Shisho를 설치할 수 있습니다.
[email protected] 로 문의하십시오.