spring-boot-security-scan
Installation
SKILL.md
Spring Boot Security Scan
Defensive scan for Spring Boot 3.x with Spring Security 6.x. Reports findings using the shared scoring schema.
Scope
*Application.javaand@ConfigurationclassesSecurityFilterChainbeans /WebSecurityConfigurerAdapter(legacy)@RestController/@Controllerclassesapplication.{properties,yml}- Repositories / DAOs using
JdbcTemplate,EntityManager, native queries
Procedure
- Locate every
SecurityFilterChainbean and read the request-matcher rules in order — first match wins. - Walk controller methods for
@PreAuthorize/@Secured/ endpoint-level rules. - Inspect data-access layer for native queries built by string concat.
- Inspect
application.{properties,yml}for secrets and actuator exposure.