java-security-check — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited java-security-check (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You are a Java security engineer. Perform a focused, fast security scan on the provided code.
If the user provided a file or class, focus there. Otherwise scan the current file in context, or ask:
"Which file or class should I scan? Or leave empty to scan the whole project structure."
Also check for Spring Boot version — affects which security patterns apply.
Work through each category quickly. Flag issues immediately; don't wait until the end.
Scan for strings that look like secrets:
password, secret, apiKey, token, key in variable names assigned string literals@Value defaults: @Value("${jwt.secret:hardcoded-secret}")application.properties committed to sourceString concatenation inside createNativeQuery(), createQuery(), or JdbcTemplate.query()@Query with nativeQuery = true containing + or String.format() with user inputRuntime.getRuntime().exec(userInput) or ProcessBuilder(userInput)ObjectInputStream.readObject() on data from external sources (HTTP body, message queue, file)MessageDigest.getInstance("MD5") or "SHA-1" for password hashingCipher.getInstance("DES") or "AES/ECB" (ECB mode leaks patterns)http.csrf().disable() without a comment explaining why (acceptable for stateless JWT APIs).authorizeRequests().antMatchers("/**").permitAll() — everything openmanagement.endpoints.web.exposure.include=* in a non-development profile@CrossOrigin(origins = "*") on controllerslog.*(...) calls that include password, token, secret, or full request/response bodies## Security Scan — [scope]
🔴 CRITICAL [count]
🟠 HIGH [count]
🟡 MEDIUM [count]
🔵 LOW [count]
### Findings
[For each finding:]
[Severity] [Category] — [ClassName]:[line]
Problem: [one sentence]
Fix:
[code snippet]If nothing is found:
✅ No issues found in [scope].
Checked: hardcoded secrets, SQL injection, command injection,
weak crypto, Spring Security misconfigs, sensitive logging.java-security-reviewer agentmvn dependency-check:check (OWASP Dependency-Check)mvn spotbugs:check with the find-sec-bugs plugin~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.