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

Axguard Remediate

BSecurity

Apply concrete defensive fixes for confirmed AXguard findings and re-audit. Use with /axguard-fix after triage. Prefer minimal patches, critical first, then verify with axguard audit/scan.

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

Works with

api

Security Analysis

B75/100
criticalPipes output to a shell interpreter

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add awarexone/AXguard --skill axguard-remediate --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Axguard Remediate?

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

Security grade badge for Axguard Remediate
[![Security: B — Skills Directory](https://www.skillsdirectory.com/api/skills/awarexone-axguard-remediate/badge)](https://www.skillsdirectory.com/skills/awarexone-axguard-remediate)

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

Download Zip
Files
SKILL.md
---
name: axguard-remediate
description: Apply concrete defensive fixes for confirmed AXguard findings and re-audit. Use with /axguard-fix after triage. Prefer minimal patches, critical first, then verify with axguard audit/scan.
---

# AXguard Remediate

Fix **confirmed** findings only (post `/axguard-triage`). Critical → high → medium. Minimal diffs. Re-audit and report delta.

Do not invent attack PoCs. Do not “fix” by deleting scanner rules. Class patterns: `axguard-knowledge`.

## Workflow

1. Input: triaged Keep list or `.findings/axguard/axguard-report.json` (kept items only).
2. Patch one class of issue at a time when possible.
3. Re-run:

```bash
axguard audit . --out-dir .findings/axguard
# or faster check:
axguard scan .
```

4. Report: fixed IDs, remaining blockers, new deltas.

## Fix patterns (defensive)

| Class | Do | Don't |
|-------|-----|--------|
| IDOR / AuthZ | Scope queries by principal/tenant; central authorize(object); deny default | Hide id only; check authn but skip authz |
| JWT | Pin alg allowlist; always verify; secrets from env/KMS | `decode` for auth; accept `none` |
| CSRF | Re-enable for cookie-session browsers; SameSite | Exempt entire API “for convenience” |
| SQLi | Bound parameters / query builder placeholders | Escape-and-concat; trust “ORM = safe” with `.raw` |
| Command inj | `subprocess` argv list, `shell=False`; allowlist args | `os.system`; interpolate into shell strings |
| Deser | JSON; reject pickle/unserialize on untrusted | “Only internal” queues without auth |
| SSTI | File templates only; autoescape on | `render_template_string(user)` |
| Path | `resolve()` + prefix jail; random ids for files | Trust `../` strip alone |
| SSRF | Scheme/host allowlist; block link-local/metadata | Blacklist-only hostnames |
| XSS | textContent / framework escape; CSP | Ad-hoc regex “sanitize” |
| Upload | UUID names; magic-byte allowlist; store outside web root | Original filename in static/ |
| GraphQL | Auth per field/mutation; introspection off in prod | Global CSRF off with cookies |
| Crypto | argon2/bcrypt; CSPRNG; TLS verify on | MD5 passwords; hard-coded IV/key |
| Secrets | Rotate + purge history if leaked; secret manager | Comment out key and leave in git |
| CORS | Explicit origins; never `*` with credentials | Reflect Origin unchecked |
| Cloud ACL | Private buckets; signed URLs | public-read for “speed” |
| Supply | Lockfile + hash pin; remove curl\|sh | Extra indexes without pin |
| Debug | DEBUG=False in prod settings; generic 500s | Rely on “we won't deploy this file” |
| Agent | Allowlisted tools; no shell-from-LLM; human gate | Pass tool args straight to bash |

## Patch quality bar

- Fix the **root cause**, not only the matched line if control belongs one layer up.
- Match project style; no drive-by refactors.
- If fix and exploit PoC both requested: **fix only**; refuse exploit/PoC in one short sentence.
- If a finding was wrong, say so and leave code unchanged — prefer triage honesty over cosmetic edits.

## Output contract

```
Fixed: [ids]
Partial: [ids + why]
Unchanged (disputed FP): [ids]
Re-audit: Critical/High/Medium/Low before → after
Reports: .findings/axguard/axguard-report.{md,html,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 →