Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

github-commit-recoveryGitHub 提交 recovery

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

428

周安装

18

GitHub Stars

1,966

下载量

150
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gadievron/raptor --skill github-commit-recovery

简介

恢复或回滚 GitHub 仓库中的错误提交,保障代码完整性。

  • 适用于撤销误提交、修复历史记录或提取丢失的代码片段。
  • 支持基于时间戳或内容哈希定位目标提交,生成恢复方案。
  • 执行前建议备份当前状态,防止数据覆盖导致不可逆损失。
  • github-commit-recovery 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GitHub Commit Recovery

Purpose: Access commit content, diffs, and metadata directly from GitHub when you have commit SHAs. Includes methods for retrieving "deleted" commits that remain accessible on GitHub servers.

When to Use This Skill

  • You have commit SHAs and need actual code content
  • Investigating commits that were force-pushed over ("deleted")
  • Need commit diffs, patches, or full file contents
  • Verifying commit authorship or metadata
  • Retrieving content from dangling commits

SHA Sources: GitHub Archive, git reflog, CI/CD logs, PR comments, issue references, external archives, security reports.

Core Principles

Deleted Commits Are Never Really Deleted:

  • When developers force push to "delete" commits, GitHub keeps them indefinitely
  • Any commit SHA remains accessible if you know the hash
  • GitHub displays a warning ("This commit does not belong to any branch") but serves the content
  • Even 4 hex digits can access commits (with collision risk)

Rate Limits Matter:

  • Authenticated API: 5,000 requests/hour
  • Unauthenticated API: 60 requests/hour
  • Web interface: Undocumented limits, WAF may block heavy usage
  • Git operations: No explicit limit, but excessive cloning may trigger throttling

Quick Start

Access a "deleted" commit via web browser:

https://github.com/org/repo/commit/FULL_COMMIT_SHA

Get commit as patch file:

curl -L https://github.com/org/repo/commit/FULL_COMMIT_SHA.patch

Query via REST API:

curl -H "Authorization: Bearer $GITHUB_TOKEN" \
  https://api.github.com/repos/org/repo/commits/FULL_COMMIT_SHA

Accessing Deleted Commits

Method 1: Direct Web Access

GitHub serves "deleted" commits at predictable URLs. These commits show a warning banner but content remains fully accessible.

Commit View:

https://github.com/<ORG>/<REPO>/commit/<SHA>

Patch Format (raw diff with headers):

https://github.com/<ORG>/<REPO>/commit/<SHA>.patch

Diff Format (unified diff only):

https://github.com/<ORG>/<REPO>/commit/<SHA>.diff

Example:

# View commit that was force-pushed over
curl -L https://github.com/grapefruit623/gcloud-python/commit/e9c3d31212847723aec86ef96aba0a77f9387493

# Download as patch
curl -L -o leaked_commit.patch \
  https://github.com/grapefruit623/gcloud-python/commit/e9c3d31212847723aec86ef96aba0a77f9387493.patch

Short SHA Access: GitHub allows accessing commits with just 4+ hex characters (if unique):

https://github.com/org/repo/commit/e9c3

Method 2: REST API

The GitHub REST API provides structured commit data including file changes, author info, and commit message.

Endpoint:

GET https://api.github.com/repos/{owner}/{repo}/commits/{ref}

Example Request:

curl -H "Accept: application/vnd.github+json" \
     -H "Authorization: Bearer $GITHUB_TOKEN" \
     https://api.github.com/repos/org/repo/commits/abc123def456

Response Structure:

{
  "sha": "abc123def456...",
  "commit": {
    "author": {
      "name": "Developer Name",
      "email": "dev@example.com",
      "date": "2025-06-15T14:23:11Z"
    },
    "message": "Commit message here"
  },
  "files": [
    {
      "filename": "src/config.js",
      "status": "added",
      "patch": "@@ -0,0 +1,3 @@\n+// config"
    }
  ]
}

Rate Limit Headers:

x-ratelimit-limit: 5000
x-ratelimit-remaining: 4999
x-ratelimit-reset: 1623456789

Method 3: Git Fetch

For bulk analysis or when you need full repository context, fetch specific commits via Git.

Minimal Clone + Fetch Specific Commit:

# Clone without file contents (just history/trees/commits)
git clone --filter=blob:none --no-checkout https://github.com/org/repo.git
cd repo

# Fetch the specific "deleted" commit
git fetch origin <COMMIT_SHA>

# View the commit
git show FETCH_HEAD

# View specific file from that commit
git show FETCH_HEAD:path/to/file.txt

Why This Works:

  • --filter=blob:none: Omits file contents initially (fast clone)
  • --no-checkout: Doesn't populate working directory
  • git fetch origin <SHA>: Retrieves specific commit even if "deleted"
  • Blobs are fetched on-demand when you access them

Investigation Patterns

Batch Download Patches

Scenario: You have a list of commit SHAs to investigate and need their content.

import requests
import time

def download_commit_patch(repo, sha, token=None):
    url = f"https://github.com/{repo}/commit/{sha}.patch"
    headers = {"Authorization": f"Bearer {token}"} if token else {}

    response = requests.get(url, headers=headers, allow_redirects=True)
    if response.status_code == 200:
        return response.text
    return None

# Download patches for a list of commits
commits = [
    {"repo": "org/repo1", "sha": "abc123..."},
    {"repo": "org/repo2", "sha": "def456..."},
]

for commit in commits:
    patch = download_commit_patch(commit["repo"], commit["sha"])
    if patch:
        with open(f"{commit['sha'][:8]}.patch", "w") as f:
            f.write(patch)
    time.sleep(0.5)  # Rate limit courtesy

Verifying Commit Authorship

Scenario: Need to verify who actually authored a suspicious commit (committer vs author can differ).

API Query:

curl -s -H "Authorization: Bearer $GITHUB_TOKEN" \
  "https://api.github.com/repos/org/repo/commits/SHA" | \
  jq '{
    author: .commit.author,
    committer: .commit.committer,
    verified: .commit.verification.verified
  }'

Response Analysis:

{
  "author": {
    "name": "Real Developer",
    "email": "dev@company.com",
    "date": "2025-06-15T10:00:00Z"
  },
  "committer": {
    "name": "CI Bot",
    "email": "bot@company.com",
    "date": "2025-06-15T10:05:00Z"
  },
  "verified": false
}

Forensic Notes:

  • Author: Who wrote the code (can be forged via git commit --author)
  • Committer: Who created the commit object
  • Verified: Whether commit has valid GPG signature
  • Discrepancies between author/committer warrant investigation

Real-World Examples

Istio Supply Chain Attack Prevention

Discovery: Security researcher Sharon Brizinov used GitHub Archive to find zero-commit PushEvents, recovering commit SHAs of "deleted" commits. Using GitHub API to fetch commit content, discovered a leaked GitHub PAT token.

Impact: The token had admin access to ALL Istio repositories (36k stars, used by Google, IBM, Red Hat). Could have enabled:

  • Reading environment variables and secrets
  • Modifying CI/CD pipelines
  • Pushing malicious code releases
  • Deleting entire repositories

Resolution: Reported via Istio's security disclosure process; token was immediately revoked.

Technique Chain:

  1. GitHub Archive → Found zero-commit PushEvent with before SHA
  2. GitHub API → GET /repos/istio/istio/commits/{SHA}.patch
  3. TruffleHog → Identified valid GitHub PAT in commit diff
  4. GitHub API → Verified token permissions via /user endpoint

High-Value Secret Categories

From scanning recovered force-pushed commits, the most impactful secrets found in order:

  1. GitHub PATs - Often have org-wide or admin permissions
  2. AWS Credentials - IAM keys with production access
  3. MongoDB Connection Strings - Direct database access
  4. API Keys - Stripe, Twilio, SendGrid with billing access

Files Most Likely to Contain Secrets:

  • .env, .env.local, .env.production
  • config.js, config.py, config.json
  • docker-compose.yml, docker-compose.yaml
  • application.properties, application.yml
  • hardhat.config.js (crypto/web3 projects)

Troubleshooting

403 Forbidden on API requests:

  • Check authentication token is valid
  • Verify token has required scopes (repo for private repos)
  • May have hit rate limit - check x-ratelimit-remaining header

404 Not Found for commit:

  • Verify SHA is complete (at least 7 characters recommended)
  • Repository may have been deleted (try searching forks)
  • Commit may be in private repo (requires authenticated access)

Rate limit exceeded:

  • Wait for reset (check x-ratelimit-reset header for Unix timestamp)
  • Use authenticated requests for 5000/hour vs 60/hour
  • Implement exponential backoff in automation

Web access blocked by WAF:

  • Reduce request frequency
  • Use API instead of web scraping
  • Consider using Git fetch method for bulk operations

Git fetch fails for commit:

  • Some very old dangling commits may be garbage collected (rare)
  • Try accessing via web interface first to confirm availability
  • Check if repo has been transferred to different org

Learn More

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.16%
按下载量换算45

Antigravity

23.1%
按下载量换算35

Gemini CLI

18.56%
按下载量换算28

OpenCode

13.62%
按下载量换算20

trae

7.49%
按下载量换算11

windsurf

3.55%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills