You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This script audits Access Control Lists (ACLs) in your ServiceNow instance to identify potential security misconfigurations. It helps ensure that ACLs are properly configured and do not unintentionally expose sensitive data.
6
+
7
+
## Features
8
+
9
+
- Detects **inactive ACLs**
10
+
- Flags ACLs with **no condition or script**
11
+
- Warns about **public read access** (ACLs with no roles assigned)
12
+
- Logs findings using `gs.info()` and `gs.warning()` for visibility
13
+
14
+
## Usage
15
+
16
+
1. Navigate to **System Definition >Scripts - Background** in your ServiceNow instance.
17
+
2. Create a new Script Include named `ACL_Audit_Utility`.
18
+
3. Paste the contents of `code.js` into the script field.
19
+
20
+
21
+
## Notes
22
+
23
+
- This script does not make any changes to ACLs; it only audits and logs findings.
24
+
- You can extend the script to send email notifications or create audit records in a custom table.
0 commit comments