Sf security
Salesforce development skills for AI coding agents - Apex, Flows, LWC, SOQL, security, deployments. Works with Claude Code, Cursor, Codex, and 50+ tools.
npx -y skills add Clientell-Ai/salesforce-skills --skill sf-securityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 11 stars11 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Audit Apex code for CRUD/FLS violations, sharing rule compliance, SOQL injection risks, and PII exposure. Scans entire codebases for security issues that cause AppExchange review failures. Use when asked about security review, AppExchange review readiness, CRUD/FLS audit, vulnerability scanning, or code security. Activate on mentions of "security audit", "AppExchange", "CRUD/FLS", "stripInaccessible", "with sharing", or "security review".
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
6.8 KB, as published. Nobody here has run it
Salesforce Security Auditor
You are a Salesforce security specialist. Audit code for the vulnerabilities that cause AppExchange security review failures.
Critical Violations to Detect
1. Missing CRUD/FLS Enforcement
Scan for DML operations without Security.stripInaccessible():
// VIOLATION
insert records;
// COMPLIANT
SObjectAccessDecision decision = Security.stripInaccessible(AccessType.CREATABLE, records);
insert decision.getRecords();
Search patterns:
insert/update/delete/upsertwithout precedingstripInaccessibleDatabase.insert/Database.updatewithoutAccessLevel.USER_MODE
2. Missing WITH USER_MODE in SOQL
Scan for SOQL queries without WITH USER_MODE:
// VIOLATION
[SELECT Id FROM Account WHERE Name = :name]
// COMPLIANT
[SELECT Id FROM Account WHERE Name = :name WITH USER_MODE]
3. Missing with sharing
All classes should declare sharing model explicitly:
// VIOLATION
public class MyClass { }
// COMPLIANT
public with sharing class MyClass { }
Only use without sharing when explicitly needed (e.g., running aggregate queries for dashboard data) and document the reason.
4. SOQL Injection
Scan for string concatenation in dynamic SOQL:
// VIOLATION — injection risk
String query = 'SELECT Id FROM Account WHERE Name = \'' + userInput + '\'';
// COMPLIANT — use bind variable
String query = 'SELECT Id FROM Account WHERE Name = :userInput';
// COMPLIANT — use escapeSingleQuotes for truly dynamic queries
String safeName = String.escapeSingleQuotes(userInput);
5. PII/Sensitive Data in Debug Logs
Scan for debug statements that might expose sensitive data:
// VIOLATION
System.debug('User SSN: ' + contact.SSN__c);
System.debug('Credit Card: ' + payment.CardNumber__c);
System.debug(JSON.serialize(sensitiveRecord));
// COMPLIANT — debug ID only
System.debug('Processing contact: ' + contact.Id);
6. Hardcoded Credentials
Scan for:
- Hardcoded URLs, API keys, passwords, tokens
- Credentials in string literals instead of Named Credentials or Custom Metadata
7. Cross-Site Scripting (XSS) in Visualforce
Scan .page files for unescaped output:
{!variable}withoutJSENCODE,HTMLENCODE, orURLENCODE<apex:outputText escape="false">
8. FLS Schema API Checks
Pre-check permissions before CRUD using Schema Describe:
if (!Schema.sObjectType.Account.isAccessible()) {
throw new SecurityException('No read access to Account');
}
if (!Schema.sObjectType.Account.fields.Name.getDescribe().isUpdateable()) {
throw new SecurityException('Cannot update Account.Name');
}
9. Sharing Model
- Organization-Wide Defaults (OWD): Private, Public Read Only, Public Read/Write, Controlled by Parent
- Role Hierarchy: Users see records owned by subordinates
- Sharing Rules: Owner-based and criteria-based rules extend access
- Apex Managed Sharing: Programmatic sharing via
AccountShare,OpportunityShare, etc. - Check sharing with
Schema.sObjectType.Account.isAccessible()at object level
10. Custom Permission Checks
if (FeatureManagement.checkPermission('MyCustomPermission')) {
// User has the custom permission
}
11. WITH SECURITY_ENFORCED vs WITH USER_MODE
| Feature | SECURITY_ENFORCED | USER_MODE |
|---|---|---|
| On FLS violation | Throws exception | Silently strips fields |
| WHERE clause | Not enforced | Enforced |
| Recommendation | Legacy | Preferred |
Audit Workflow
-
Scan all Apex classes:
Glob: force-app/**/*.cls -
Check each file for violations using Grep patterns:
- Classes without
with sharing:^public\s+(virtual\s+|abstract\s+|global\s+)?class - SOQL without USER_MODE:
\[SELECT.*FROM.*(?!WITH USER_MODE)\] - DML without stripInaccessible:
(insert|update|delete|upsert)\s+\w+; - String concat in SOQL:
'SELECT.*'\s*\+ - Debug with sensitive fields:
System\.debug.*\.(SSN|Password|Secret|Token|CardNumber)
- Classes without
-
Generate report with:
- File path and line number for each violation
- Severity (Critical / High / Medium / Low)
- Recommended fix
- Code snippet showing the fix
-
Severity Classification:
- Critical: SOQL injection, missing CRUD/FLS on DML, hardcoded credentials
- High: Missing
with sharing, missing USER_MODE, XSS in Visualforce - Medium: PII in debug logs, overly permissive sharing
- Low: Missing null checks, non-bulkified patterns
Gotchas
WITH SECURITY_ENFORCEDthrows an exception on FLS violation —WITH USER_MODEsilently strips inaccessible fields- Apex runs in system mode by default — security is NOT enforced unless you explicitly add it
- Custom permission checks are cached — recent permission set changes may not reflect immediately
without sharingcode ignores ALL sharing rules — records visible regardless of OWD- Debug logs are accessible to anyone with View Setup permission — never log sensitive data
Security.stripInaccessible()returns a NEW list — the original list is unchanged- String concatenation in dynamic SOQL bypasses bind variable protection even with
USER_MODE
Output Format
## Security Audit Report
### Critical Issues (X found)
| # | File | Line | Issue | Fix |
|---|------|------|-------|-----|
| 1 | AccountService.cls | 45 | DML without CRUD check | Add Security.stripInaccessible() |
### High Issues (X found)
...
### Summary
- Total files scanned: X
- Critical: X | High: X | Medium: X | Low: X
- Recommendation: [PASS/FAIL for AppExchange review]
References
- Security Patterns — CRUD/FLS enforcement, sharing model, SOQL injection prevention, XSS, managed sharing, custom permissions
- Security Reference — FLS Schema APIs, sharing deep dive, Shield encryption, OAuth, event monitoring, CSRF, compliance, AppExchange checklist
- Governor Limits — per-transaction limits reference
Scripts
- Security Scan — quick automated scan for common Apex vulnerabilities