andrewmusselman opened a new issue, #765: URL: https://github.com/apache/tooling-trusted-releases/issues/765
**ASVS:** 1.2.2 | **CWE:** CWE-116 | **Severity:** MEDIUM | **Effort:** Low ### Description In `atr/shared/distribution.py` (lines ~131–148), `owner_namespace`, `package`, and `version` values are interpolated into API URLs via `.format()` without URL encoding. Special characters in these values could corrupt the URL or cause unexpected server-side behavior. ### Remediation Apply `urllib.parse.quote()` to each parameter before interpolation. For Maven `owner_namespace`, split on `.` and encode each segment individually. Defense in-depth -- 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]
