open-vault/tools/semgrep/physical-storage.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

10 lines
317 B
YAML

rules:
- id: physical-storage-bypass-encryption
patterns:
- pattern-either:
- pattern: $CORE.physical.Put(...)
- pattern: $CORE.underlyingPhysical.Put(...)
message: "Bypassing encryption by accessing physical storage directly"
languages: [go]
severity: WARNING