add secret scanning to README.md

This commit is contained in:
Maidul Islam
2023-05-18 15:57:48 -04:00
committed by GitHub
parent fc19a17f4b
commit 845a476974

View File

@@ -89,20 +89,24 @@ git clone https://github.com/Infisical/infisical && cd infisical && copy .env.ex
Create an account at `http://localhost:80`
### Scan your code for leaks
On top managing secrets, you can also scan for leaked secrets in your files, directories and git repositories. To scan your full git history run:
### Scan and prevent secret leaks
On top managing secrets with Infisical, you can also scan for over 140+ secret types in your files, directories and git repositories.
To scan your full git history, run:
```
infisical scan --verbose
```
To scan a non git repository, run the above command with --no-git flag.
You can also scan your uncommitted git changes by running the following command:
To scan your uncommitted git changes, run:
```
infisical scan git-changes --verbose
```
You can also scan your uncommited but staged changes by running the command below. This command can also be used as a pre-commit hook to prevent secret leak.
```
infisical scan git-changes --staged --verbose
```