Restructure repository: Remove OWASP categorization, organize by vulnerability type

Co-authored-by: Stalin-143 <161853795+Stalin-143@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-04 19:01:04 +00:00
parent 274734e91a
commit ba72efbc5e
46 changed files with 341 additions and 323 deletions
+23
View File
@@ -0,0 +1,23 @@
# Log Injection
## Description
Log injection vulnerabilities occur when an application includes untrusted data in log files without proper validation or encoding. Attackers can exploit this to forge log entries, inject malicious content into logs, or hide their activities by manipulating log data.
## Common Attack Vectors
- User input fields that get logged
- HTTP headers
- Error messages
- Authentication attempts
- Application events
## Common Techniques
- CRLF injection to create fake log entries
- Log forging
- Log poisoning
- Log file pollution
## Testing Approach
Submit special characters and control sequences in input fields that are logged to test for log injection vulnerabilities.
## Payloads
See `log-injection-payloads.txt` for a comprehensive list of log injection payloads.