mcp-server-semgrep
Version:
MCP Server for Semgrep Integration - static code analysis with AI
55 lines (53 loc) • 1.27 kB
YAML
rules:
- id: azure-automation-encrypted
patterns:
- pattern-either:
- pattern-inside: |
resource "azurerm_automation_variable_string" "..." {
...
}
- pattern-inside: |
resource "azurerm_automation_variable_datetime" "..." {
...
}
- pattern-inside: |
resource "azurerm_automation_variable_int" "..." {
...
}
- pattern-not-inside: |
resource "azurerm_automation_variable_string" "..." {
...
encrypted = true
...
}
- pattern-not-inside: |
resource "azurerm_automation_variable_datetime" "..." {
...
encrypted = true
...
}
- pattern-not-inside: |
resource "azurerm_automation_variable_int" "..." {
...
encrypted = true
...
}
message: Ensure that Automation account variables are encrypted
languages: [hcl]
severity: WARNING
metadata:
owasp:
- A03:2017 - Sensitive Data Exposure
cwe:
- 'CWE-320: CWE CATEGORY: Key Management Errors'
category: security
technology:
- terraform
- azure
references:
- https://owasp.org/Top10/A02_2021-Cryptographic_Failures
subcategory:
- audit
likelihood: LOW
impact: LOW
confidence: LOW