Skip to content

Commit 5e1d4c9

Browse files
committed
Fix broken ZAP link
1 parent 55aba28 commit 5e1d4c9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

β€Žpractices/security.mdβ€Ž

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The remainder of this page gives more detailed and specific recommendations to b
8383
- Be wary of any 3rd party JavaScript included on the page, e.g. for A/B testing, analytics
8484
- Pin dependencies at known versions to avoid unexpected updates
8585
- Scan dependencies for vulnerabilities, e.g. using [OWASP Dependency Check](https://owasp.org/www-project-dependency-check/) or [Snyk](https://snyk.io/)
86-
- Scan running software, e.g. using [OWASP ZAP](https://owasp.org/www-project-zap/)
86+
- Scan running software, e.g. using [OWASP ZAP](https://www.zaproxy.org/)
8787
- **Automate** security testing — on every build if practical
8888
- Generate test data in a way that avoids including personally identifiable information
8989
- When granting roles to CI/CD tools, use different roles for the different stages in the deployment pipeline — for example so that a deployment meant for a development account cannot be performed against a production account
@@ -142,17 +142,17 @@ The remainder of this page gives more detailed and specific recommendations to b
142142
<details><summary>Example IAM policy fragment to prevent unencrypted RDS databases (click to expand)</summary>
143143

144144
```yaml
145-
{​​​​​​​​
145+
{
146146
"Sid": "",
147147
"Effect": "Deny",
148148
"Action": "rds:CreateDBInstance",
149149
"Resource": "*",
150-
"Condition": {​​​​​​​​
151-
"Bool": {​​​​​​​​
150+
"Condition": {
151+
"Bool": {
152152
"rds:StorageEncrypted": "false"
153153
}
154-
}​​​​​​​​
155-
}​​​​​​​​
154+
}
155+
}
156156
```
157157

158158
</details>

0 commit comments

Comments
Β (0)