andrewmusselman opened a new issue, #766: URL: https://github.com/apache/tooling-trusted-releases/issues/766
**ASVS:** 1.2.2 | **CWE:** CWE-116 | **Severity:** MEDIUM | **Effort:** Low ### Description In `atr/util.py` (lines ~893–946), message IDs and thread IDs are interpolated into Apache Lists API URLs with only partial manual encoding (`%3C`, `%3E`). Message IDs commonly contain `@`, `+`, and other characters that require proper URL encoding. ### Remediation Use `urllib.parse.quote()` consistently for all dynamic values in API query parameters. Ensure thread IDs are never user-controlled -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
