Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

jwtJWT 安全

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

39,413

周安装

1,610

GitHub Stars

2

下载量

12,622
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:jwt(JWT 安全)
来源仓库:https://github.com/ivangdavila/jwt
安装命令:
openclaw skills install jwt
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install jwt

简介

用于 JWT 安全审计和身份验证流程检查。

  • 适合梳理敏感配置、分析鉴权逻辑和漏洞排查。
  • 通过 clawhub 安装,需在 OpenClaw 环境中使用。
  • 涉及密钥和令牌操作时应确认最小权限原则。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • jwt 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
JWT
slug
jwt
version
1.0.1
description
Implement secure JWT authentication with proper validation, token lifecycle, and key management.
metadata
{"clawdbot":{"emoji":"🔐","os":["linux","darwin","win32"]}}

Quick Reference

TopicFile
Algorithm selectionalgorithms.md
Token lifecyclelifecycle.md
Validation checklistvalidation.md
Common attacksattacks.md

Security Fundamentals

  • JWTs are signed, not encrypted—anyone can decode and read the payload; never store secrets in it
  • Always verify signature before trusting claims—decode without verify is useless for auth
  • The alg: none attack: reject tokens with algorithm "none"—some libraries accepted unsigned tokens
  • Use strong secrets: HS256 needs 256+ bit key; short secrets are brute-forceable

Algorithm Choice

  • HS256 (HMAC): symmetric, same key signs and verifies—good for single service
  • RS256 (RSA): asymmetric, private key signs, public verifies—good for distributed systems
  • ES256 (ECDSA): smaller signatures than RSA, same security—preferred for size-sensitive cases
  • Never let the token dictate algorithm—verify against expected algorithm server-side

Required Claims

  • exp (expiration): always set and verify—tokens without expiry live forever
  • iat (issued at): when token was created—useful for invalidation policies
  • nbf (not before): token not valid until this time—for scheduled access
  • Clock skew: allow 30-60 seconds leeway when verifying time claims

Audience & Issuer

  • iss (issuer): who created the token—verify to prevent cross-service token theft
  • aud (audience): intended recipient—API should reject tokens for other audiences
  • sub (subject): who the token represents—typically user ID
  • Token confusion attack: without aud/iss validation, token for Service A works on Service B

Token Lifecycle

  • Access tokens: short-lived (5-15 min)—limits damage if stolen
  • Refresh tokens: longer-lived, stored securely—used only to get new access tokens
  • Refresh token rotation: issue new refresh token on each use, invalidate old one
  • Revocation is hard—JWTs are stateless; use short expiry + refresh, or maintain blacklist

Storage

  • httpOnly cookie: immune to XSS, but needs CSRF protection
  • localStorage: vulnerable to XSS, but simpler for SPAs
  • Memory only: most secure, but lost on page refresh
  • Never store in URL parameters—visible in logs, history, referrer headers

Validation Checklist

  • Verify signature with correct algorithm (don't trust header's alg)
  • Check exp is in future (with clock skew tolerance)
  • Check iat is not unreasonably old (optional policy)
  • Verify iss matches expected issuer
  • Verify aud includes your service
  • Check nbf if present

Common Mistakes

  • Storing sensitive data in payload—it's just base64, not encrypted
  • Huge payloads—JWTs go in headers; many servers limit header size to 8KB
  • No expiration—indefinite tokens are security nightmares
  • Same secret across environments—dev tokens work in production
  • Logging tokens—they're credentials; treat as passwords

Key Rotation

  • Use kid (key ID) claim to identify which key signed the token
  • JWKS (JSON Web Key Set) endpoint for public key distribution
  • Overlap period: accept old key while transitioning to new
  • After rotation, old tokens still valid until they expire—plan accordingly

Implementation

  • Use established libraries—don't implement JWT parsing yourself
  • Libraries: jsonwebtoken (Node), PyJWT (Python), java-jwt (Java), golang-jwt (Go)
  • Middleware should reject invalid tokens early—before any business logic

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.15%
按下载量换算10,495

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills