Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .wordlist-en.txt
Original file line number Diff line number Diff line change
Expand Up @@ -535,3 +535,4 @@ BOPLA
BOLA
WebDAV
tunable
allowlist
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and use the list below as suggestions for a checklist that has been tailored for
5. Apply canonicalization to convert unicode data into a standard form
6. Ensure the output encoding is safe for all target systems
7. In particular sanitize all output used for operating system commands
8. Sanitize potentially dangerous characters before using the data to call another service

#### 2. Contextual output encoding

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and use the list below as suggestions for a checklist that has been tailored for
8. Validate data range and also data length
9. Utilize canonicalization to address obfuscation attacks
10. All validation failures should result in input rejection
11. Validate all input against an allowlist of characters, whenever possible

#### 2. Libraries and frameworks

Expand Down