open-vault/tools/semgrep/ci/hmac-bytes.yml
Hridoy Roy 7e0abe3c7e
Add Semgrep Rules to OSS (#14513)
* add semgrep yml

* add semgrep ci job

* remove replication semgrep rule in oss

* fix makefile

* add semgrep to ci

* upwind triple if in ui.go semgrep refactoring
2022-03-18 11:14:03 -07:00

20 lines
572 B
YAML

rules:
- id: use-hmac-equal
patterns:
- pattern-either:
- pattern: |
$MAC = hmac.New(...)
...
$H = $MAC.Sum(...)
...
bytes.Equal($H, ...)
- pattern: |
$MAC = hmac.New(...)
...
$H = $MAC.Sum(...)
...
bytes.Equal(..., $H)
message: "Comparing a MAC with bytes.Equal()"
languages: [go]
severity: ERROR