Skip to main content
Back to registry

springboot-security

affaan-m/everything-claude-code

Use when adding auth, handling input, creating endpoints, or dealing with secrets.

Installs1
Install command
npx skills add https://github.com/affaan-m/everything-claude-code --skill springboot-security
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Use when adding auth, handling input, creating endpoints, or dealing with secrets. Remember : Deny by default, validate inputs, least privilege, and secure-by-configuration first. - Adding authentication (JWT, OAuth2, session-based) - Implementing authorization (@PreAuthorize, role-based access) - Validating user input (Bean Validation, custom validators) - Configuring CORS, CSRF, or security headers - Managing secrets (Vault, environment variables) - Adding rate limiting or brute-force protection - Scanning dependencies for CVEs - Prefer stateless JWT or opaque tokens with revocation list - Use httpOnly , Secure , SameSite=Strict cookies for sessions - Validate tokens with OncePerRequestFilter or resource server - Enable method security: @EnableMethodSecurity - Use @PreAuthorize("hasRole('ADMIN')") or @PreAuthorize("@authz.canEdit(#id)") - Deny by default; expose only required scopes - Use Bean Validation with @Valid on controllers - Apply constraints on DTOs: @NotBlank , @Email , @Size , custom validators - Sanitize any HTML with a whitelist before rendering - Use Spring Data repositories or parameterized queries - For native queries, use :param bindings; never concatenate strings - Always hash passwords with BCrypt or Argon2 — never store plaintext - Use PasswordEncoder bean, not manual hashing - For browser session apps, keep CSRF enabled; include token in forms/headers -...

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does springboot-security do?

Use when adding auth, handling input, creating endpoints, or dealing with secrets.

Is springboot-security good?

springboot-security does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does springboot-security work with?

springboot-security currently lists compatibility with codex, gemini-cli, opencode, cursor, kimi-cli, github-copilot, claude-code.

What are alternatives to springboot-security?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install springboot-security?

npx skills add https://github.com/affaan-m/everything-claude-code --skill springboot-security

Related skills

More from affaan-m/everything-claude-code

Related skills

Alternatives in Software Engineering