Нет описания

zach rice 524d81fde9 durafmt 7 лет назад
vendor 524d81fde9 durafmt 7 лет назад
.travis.yml 1f80d14f3f Gitleaks v1.0.0 (#75) 7 лет назад
CHANGELOG.md dcda26578b report filetype enforcement, time to audit 7 лет назад
CONTRIBUTING.md d299b5aa7f Exitcode (#100) 7 лет назад
Dockerfile 8a76e0af27 Update Go docker version 7 лет назад
Gopkg.lock 524d81fde9 durafmt 7 лет назад
Gopkg.toml fad98cbde2 Single commit repo (#95) 7 лет назад
LICENSE.md d482577e47 copyleft 7 лет назад
Makefile d387f528c4 update lint 7 лет назад
README.md dcda26578b report filetype enforcement, time to audit 7 лет назад
gitleaks.toml 0726209172 maintenance 7 лет назад
gitleaks_test.go dcda26578b report filetype enforcement, time to audit 7 лет назад
main.go dcda26578b report filetype enforcement, time to audit 7 лет назад

README.md

gitleaks

Travis

Audit git repos for secrets

Powered by src-d's go-git

Installing

go get -u github.com/zricethezav/gitleaks

Or download from release binaries here

Usage and Options

Usage:
  gitleaks [OPTIONS]

Application Options:
  -r, --repo=          Repo url to audit
      --github-user=   Github user to audit
      --github-org=    Github organization to audit
      --github-url=    GitHub API Base URL, use for GitHub Enterprise. Example: https://github.example.com/api/v3/ (default: https://api.github.com/)
  -p, --private        Include private repos in audit
  -b, --branch=        branch name to audit (defaults to HEAD)
  -c, --commit=        sha of commit to stop at
      --depth=         maximum commit depth
      --repo-path=     Path to repo
      --owner-path=    Path to owner directory (repos discovered)
      --max-go=        Maximum number of concurrent go-routines gitleaks spawns
      --disk           Clones repo(s) to disk
      --all-refs       run audit on all refs
      --single-search= single regular expression to search for
      --config=        path to gitleaks config
      --ssh-key=       path to ssh key
      --exclude-forks  exclude forks for organization/user audits
  -e, --entropy=       Include entropy checks during audit. Entropy scale: 0.0(no entropy) - 8.0(max entropy)
  -l, --log=           log level
  -v, --verbose        Show verbose output from gitleaks audit
      --report=        path to write report file
      --redact         redact secrets from log messages and report
      --version        version number
      --sample-config  prints a sample config file

Help Options:
  -h, --help           Show this help message

Exit Codes

0: no leaks
1: leaks present
2: error encountered

Additional Examples and Explanations

Check the wiki here

If you find a valid leak in a repo

Please read this Github article on removing sensitive data from a repository to remove the sensitive information from your history.

Run me with docker

Simply run docker run --rm --name=gitleaks zricethezav/gitleaks --help