Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Configuration Security

ASecurity

Find security misconfiguration before ship — debug flags, verbose errors, exposed actuators/admin, weak defaults (CWE-489 / CWE-209 / A05:2021).

15 stars
0 votes
0 copies
0 views
Added 9/22/2026
securityrustgoexpressdjangoflaskspringdockerapisecurity

Works with

cliapi

Security Analysis

A100/100

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add awarexone/AXguard --skill configuration-security --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Configuration Security?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Configuration Security
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/awarexone-configuration-security/badge)](https://www.skillsdirectory.com/skills/awarexone-configuration-security)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: configuration-security
description: Find security misconfiguration before ship — debug flags, verbose errors, exposed actuators/admin, weak defaults (CWE-489 / CWE-209 / A05:2021).
version: "1.0.0"
author: AwareXone
license: MIT
domain: infrastructure
subcategory: configuration
tags: [misconfiguration, debug, defaults, cwe-489, cwe-209]
frameworks:
  cwe: [CWE-489, CWE-209]
  owasp_top10: [A05:2021, A09:2021]
  owasp_api_top10: [API8:2023]
  owasp_llm_top10: []
  owasp_wstg: []
  owasp_asvs: []
  mitre_attack: []
  mitre_atlas: []
  nist_csf: []
  nist_ai_rmf: []
related_skills: [cloud-security, secrets-detection, supply-chain-security, security-triage, security-remediation]
related_commands: [/axguard-debug, /axguard-cloud, /axguard-audit]
related_rules: [debug., cloud., crypto.]
references:
  - https://owasp.org/Top10/A05_2021-Security_Misconfiguration/
  - https://cwe.mitre.org/data/definitions/489.html
  - https://cwe.mitre.org/data/definitions/209.html
last_reviewed: "2026-09-15"
---

# Configuration Security

## Purpose

Detect **insecure defaults and runtime misconfiguration** that ship with the product: debug modes, stack traces to clients, open management endpoints, and related hard-coded crypto/CORS footguns adjacent to config.

## When to Use

- Pre-ship / production config review
- After `axguard` hits `debug.*`, suspicious `cloud.*`, or `crypto.*` defaults
- Framework apps (Django/Flask/Express/Spring) where DEBUG or actuators may leak

## When Not to Use

- Local-only developer settings clearly gated and never referenced by prod deploy paths
- Penetration of live systems without authorization

## Security Concepts

A05:2021 covers incomplete hardening: unnecessary features on, default accounts, verbose errors, missing security headers, and misconfigured permissions. Active debug code (CWE-489) and sensitive error messages (CWE-209) turn configuration mistakes into reconnaissance or RCE (e.g. interactive debuggers).

## Threat Model

Attacker goals:

1. Harvest stack traces, env hints, or heap dumps from verbose errors / actuators.
2. Abuse debug/reloader features for code execution.
3. Bypass weak TLS/crypto defaults or trust-all certificate settings.
4. Combine with CORS/cloud misconfig for broader access.

## Analysis Workflow

1. Run `axguard scan` / `audit`; collect `debug.*`, review related `cloud.*` / `crypto.*`.
2. Confirm each hit is on a **shipped** path (Dockerfile, prod compose, CI deploy config, main settings module) — not only `.env.example`.
3. Check framework debug: `DEBUG=True`, `app.run(debug=True)`, Express error handlers sending `err.stack`.
4. Check management surfaces: Spring Actuator `exposure.include=*`, unauthenticated admin/metrics.
5. Review security-relevant defaults: permissive CORS (→ `cloud-security`), `verify=False`, hardcoded IVs/keys (→ `secrets-detection` / crypto rules).
6. Prefer environment-forced safe defaults (`DEBUG=False` in prod) over hope that operators remember.

## Evidence Requirements

- File:line of unsafe setting
- Whether prod/staging deploy uses that file
- Leak class (stack, env, debugger, open admin)
- Confidence gated on deploy reachability

## False Positive Controls

- `.env.example` / sample compose with `DEBUG=true` and documented local-only use
- Error handlers that log stacks server-side and return generic client bodies
- Actuator limited to `health`/`info` behind auth and network policy
- Test settings modules excluded from production images

## Remediation

- Force safe prod config via env / secrets manager; fail closed if unset.
- Disable interactive debuggers and template auto-reload in production.
- Return generic errors to clients; keep detail in server logs (with redaction).
- Minimize exposed management endpoints; authenticate and network-restrict the rest.
- Align CORS and cloud ACL hardening with `cloud-security`.

## Verification

Re-run `axguard audit` focusing on `debug.*`. Confirm production config paths cannot enable debug. Spot-check that client error responses omit stacks and secrets.

## Related Skills

`cloud-security`, `secrets-detection`, `security-triage`, `security-remediation`, `axguard-triage` (orchestration)

## Framework Mapping

- CWE-489 Active Debug Code
- CWE-209 Generation of Error Message Containing Sensitive Information
- OWASP A05:2021 Security Misconfiguration
- OWASP A09:2021 Security Logging and Monitoring Failures (adjacent when errors/logging are mishandled)
- OWASP API8:2023 Security Misconfiguration

## References

- https://owasp.org/Top10/A05_2021-Security_Misconfiguration/
- https://owasp.org/Top10/A09_2021-Security_Logging_and_Monitoring_Failures/
- https://cwe.mitre.org/data/definitions/489.html
- https://cwe.mitre.org/data/definitions/209.html
- https://owasp.org/API-Security/editions/2023/en/0xa8-security-misconfiguration/

## Research Provenance

Primary: OWASP Top 10:2021 A05/A09; CWE-489/209; OWASP API8:2023 (2026-09-15).  
Internal: AXGuard `rules/debug.json`, `rules/cloud.json`, `rules/crypto.json`.

Attribution

awarexoneawarexone
View sourceMore from awarexone →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Springboot Security

Java Spring Boot 服务中关于身份验证/授权、验证、CSRF、密钥、标头、速率限制和依赖安全的 Spring Security 最佳实践。

2456590 votes

Security Review

Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist and patterns.

2456590 votes

Paperclip Task Bridge

Create, comment on, update, and list Paperclip tasks from Hermes using scoped Paperclip API credentials.

805540 votes

Summarize Status

Write a short, colloquial summary for a Paperclip summary slot: open with the 1–3 specific, concrete actions the reader needs to take right now to unblock the work, then a brief plain-language status, streaming progress as it works.

805540 votes

Paperclip Evals

Choose, inspect, validate, and report Paperclip Runner or Product E2E evaluations while preserving evidence, provenance, cost, and failure classification.

805540 votes
View all in security →