audit-labs/audit-tools

A collection of scripts, queries, and other goodies you can use in an audit.

clone: git clone https://gitbay.org/audit-labs/audit-tools.git

e34fc669608ec95f4140ea76c70766701dec8135

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-07-29T04:51:08Z

docs: reword S3 ACL-URI comment so it isn't parsed as a suppression directive (S7632)
 applications/aws/collectors/s3.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/applications/aws/collectors/s3.py b/applications/aws/collectors/s3.py
index ad7c091..ca1da1b 100644
--- a/applications/aws/collectors/s3.py
+++ b/applications/aws/collectors/s3.py
@@ -9,7 +9,7 @@ from botocore.exceptions import ClientError
 
 # AWS's fixed identifier for the "all users" ACL grantee. It is an opaque URI
 # used as a group ID in ACL grants, not a network endpoint this tool connects
-# to, so the http scheme is expected. NOSONAR: not an insecure URL.
+# to, so the http scheme is expected rather than an insecure request.
 ALL_USERS = "http://acs.amazonaws.com/groups/global/AllUsers"  # NOSONAR