Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问clear审计通过

security-checklist安全检查表

Agent Skill

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

总安装

2,186

周安装

92

GitHub Stars

176

下载量

765
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:security-checklist(安全检查表)
来源仓库:https://github.com/jamditis/claude-skills-journalism
仓库路径:skills/security-checklist
安装命令:
npx skills add https://github.com/jamditis/claude-skills-journalism --skill security-checklist
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/jamditis/claude-skills-journalism --skill security-checklist

简介

用于辅助安全审计、权限检查和常见漏洞排查。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中梳理敏感配置、分析鉴权逻辑或生成复核清单。
  • 不能将工具输出直接当作最终结论;涉及密钥或用户数据时应确认最小权限和脱敏方式。
  • 安装命令:npx skills add https://github.com/jamditis/claude-skills-journalism --skill security-checklist
  • 注意:生产系统操作需谨慎,避免直接修改凭据或访问控制配置。

SKILL.md

Security checklist

Minimum viable security before shipping any web application. This is not exhaustive—it's the baseline that prevents obvious disasters.

Pre-ship audit

Run through this checklist before any production deployment. If you can't check an item, fix it first.

Authentication

  • Passwords hashed with bcrypt, scrypt, or Argon2 (NEVER MD5/SHA1/plain text)
  • Password requirements enforced (minimum 12 characters recommended)
  • Session tokens are cryptographically random (use crypto.randomBytes or equivalent)
  • Sessions expire (24 hours for normal apps, shorter for sensitive data)
  • Logout actually invalidates the session server-side
  • Password reset tokens are single-use and expire within 1 hour
  • Failed login attempts are rate-limited (5 attempts, then cooldown)
  • No credentials in code, logs, or error messages

Input validation

  • All user input is validated server-side (client validation is UX, not security)
  • SQL queries use parameterized statements (NEVER string concatenation)
  • HTML output is escaped to prevent XSS (use framework defaults)
  • File uploads validate type, size, and are stored outside webroot
  • URLs and redirects are validated against allowlist
  • JSON/XML parsers have entity expansion limits

Secrets management

  • No secrets in source code or git history
  • Environment variables or secrets manager for all credentials
  • Different secrets for development/staging/production
  • API keys have minimum required permissions
  • Secrets can be rotated without code deployment

Database security

  • Database not exposed to public internet
  • Application uses dedicated database user (not root/admin)
  • Database user has minimum required permissions
  • Row-level security (RLS) enabled where applicable
  • Backups encrypted and tested for restoration
  • Connection strings use SSL/TLS

Network and transport

  • HTTPS only (redirect HTTP to HTTPS)
  • TLS 1.2+ (disable older versions)
  • HSTS header enabled
  • Secure cookie flags set (Secure, HttpOnly, SameSite)
  • CORS configured for specific origins (not * in production)

Rate limiting and DDoS

  • API endpoints rate-limited per user/IP
  • Login endpoints have stricter limits
  • CDN or DDoS protection in front of application
  • Request size limits configured
  • Timeout limits on all external calls

Logging and monitoring

  • Authentication events logged (login, logout, failed attempts)
  • No sensitive data in logs (passwords, tokens, PII)
  • Logs stored securely with retention policy
  • Alerts configured for suspicious patterns
  • Error messages don't leak system information

Infrastructure

  • Firewall configured (deny by default)
  • Unnecessary ports closed
  • SSH key authentication (no password auth)
  • Dependencies updated (check for known vulnerabilities)
  • Admin interfaces not publicly accessible

Common vulnerabilities by framework

Node.js/Express

// BAD: SQL injection
db.query(`SELECT * FROM users WHERE id = ${req.params.id}`);

// GOOD: Parameterized query
db.query('SELECT * FROM users WHERE id = $1', [req.params.id]);

// BAD: XSS vulnerability
res.send(`<h1>Hello ${req.query.name}</h1>`);

// GOOD: Use template engine with auto-escaping
res.render('greeting', { name: req.query.name });

// BAD: Secrets in code
const API_KEY = 'sk_live_abc123';

// GOOD: Environment variables
const API_KEY = process.env.API_KEY;

Python/Django/Flask

# BAD: SQL injection
cursor.execute(f"SELECT * FROM users WHERE id = {user_id}")

# GOOD: Parameterized query
cursor.execute("SELECT * FROM users WHERE id = %s", [user_id])

# BAD: Pickle deserialization (RCE vulnerability)
data = pickle.loads(user_input)

# GOOD: Use JSON for untrusted data
data = json.loads(user_input)

# BAD: Debug mode in production
app.run(debug=True)

# GOOD: Debug off, proper error handling
app.run(debug=False)

React/Frontend

// BAD: XSS via dangerouslySetInnerHTML
<div dangerouslySetInnerHTML={{ __html: userContent }} />

// GOOD: Let React escape content
<div>{userContent}</div>

// BAD: Storing tokens in localStorage (XSS accessible)
localStorage.setItem('token', authToken);

// BETTER: HttpOnly cookies (not accessible via JS)
// Set via server response header

// BAD: Exposing API keys in frontend code
const API_KEY = 'sk_live_abc123';

// GOOD: Proxy through your backend
const response = await fetch('/api/proxy/external-service');

Password hashing reference

Node.js with bcrypt

const bcrypt = require('bcrypt');

// Hashing (on registration)
const saltRounds = 12;
const hashedPassword = await bcrypt.hash(plainPassword, saltRounds);

// Verification (on login)
const isValid = await bcrypt.compare(plainPassword, hashedPassword);

Python with bcrypt

import bcrypt

# Hashing
hashed = bcrypt.hashpw(password.encode('utf-8'), bcrypt.gensalt(rounds=12))

# Verification
is_valid = bcrypt.checkpw(password.encode('utf-8'), hashed)

Environment variables setup

.env file (development only, never commit)

# .env
DATABASE_URL=postgresql://user:pass@localhost:5432/myapp
JWT_SECRET=your-256-bit-secret-here
API_KEY=sk_test_xxxxx

.gitignore (mandatory)

.env
.env.local
.env.*.local
*.pem
*.key
credentials.json
secrets/

Loading environment variables

// Node.js with dotenv
require('dotenv').config();
const dbUrl = process.env.DATABASE_URL;

// Fail fast if missing
if (!process.env.JWT_SECRET) {
  throw new Error('JWT_SECRET environment variable is required');
}

Database row-level security (Supabase/PostgreSQL)

-- Enable RLS on table
ALTER TABLE documents ENABLE ROW LEVEL SECURITY;

-- Users can only read their own documents
CREATE POLICY "Users can read own documents" ON documents
  FOR SELECT USING (auth.uid() = user_id);

-- Users can only insert documents as themselves
CREATE POLICY "Users can insert own documents" ON documents
  FOR INSERT WITH CHECK (auth.uid() = user_id);

-- Users can only update their own documents
CREATE POLICY "Users can update own documents" ON documents
  FOR UPDATE USING (auth.uid() = user_id);

-- Users can only delete their own documents
CREATE POLICY "Users can delete own documents" ON documents
  FOR DELETE USING (auth.uid() = user_id);

CORS configuration

Express.js

const cors = require('cors');

// BAD: Allow all origins
app.use(cors());

// GOOD: Specific origins
app.use(cors({
  origin: ['https://myapp.com', 'https://www.myapp.com'],
  methods: ['GET', 'POST', 'PUT', 'DELETE'],
  allowedHeaders: ['Content-Type', 'Authorization'],
  credentials: true
}));

Security headers

Express.js with Helmet

const helmet = require('helmet');

app.use(helmet({
  contentSecurityPolicy: {
    directives: {
      defaultSrc: ["'self'"],
      scriptSrc: ["'self'"],
      styleSrc: ["'self'", "'unsafe-inline'"],
      imgSrc: ["'self'", "data:", "https:"],
    },
  },
  hsts: {
    maxAge: 31536000,
    includeSubDomains: true,
    preload: true
  }
}));

Manual headers

// Essential security headers
res.setHeader('X-Content-Type-Options', 'nosniff');
res.setHeader('X-Frame-Options', 'DENY');
res.setHeader('X-XSS-Protection', '1; mode=block');
res.setHeader('Strict-Transport-Security', 'max-age=31536000; includeSubDomains');
res.setHeader('Content-Security-Policy', "default-src 'self'");

What NOT to log

// NEVER log these:
// - Passwords (plain or hashed)
// - Session tokens / JWTs
// - API keys
// - Credit card numbers
// - Social security numbers
// - Full request bodies with user data

// BAD
console.log('Login attempt:', { email, password });
console.log('Request:', req.body);

// GOOD
console.log('Login attempt:', { email, success: false, reason: 'invalid_password' });
console.log('Request:', { endpoint: req.path, method: req.method, userId: req.user?.id });

Quick fixes for common issues

"I stored passwords in plain text"

  1. Add password hashing immediately
  2. Force password reset for all users
  3. Invalidate all existing sessions
  4. Check if database was ever exposed/leaked

"My API key is in the git history"

  1. Rotate the key immediately (generate new one)
  2. Revoke the old key
  3. Use git filter-branch or BFG Repo-Cleaner to remove from history
  4. Force push (coordinate with team)

"I don't know what data I'm logging"

  1. Search codebase for console.log, logger., print(
  2. Review what's being logged
  3. Implement structured logging with field allowlists
  4. Set up log rotation and retention

"My database is publicly accessible"

  1. Change database credentials immediately
  2. Configure firewall rules (allow only application server IPs)
  3. Enable SSL/TLS for connections
  4. Review access logs for unauthorized queries

Compliance quick reference

You likely need to care about:

  • GDPR (EU users): Data deletion rights, consent, breach notification
  • CCPA (California users): Similar to GDPR
  • PCI DSS (credit cards): Don't store card numbers, use payment processor
  • HIPAA (health data): Encryption, access controls, audit logs
  • SOC 2 (enterprise sales): Security controls documentation

Minimum for any user data:

  1. Privacy policy explaining data collection
  2. Way for users to request data deletion
  3. Encryption in transit (HTTPS) and at rest
  4. Access logs and audit trail
  5. Incident response plan (even if basic)

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.03%
按下载量换算230

Antigravity

21.34%
按下载量换算163

Gemini CLI

18.22%
按下载量换算139

OpenCode

12.49%
按下载量换算96

Codex

7.71%
按下载量换算59

windsurf

3.47%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills