npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

pi-reverse-basics

v0.1.0

Published

整理的 pi 基础通用逆向 skill 合集:桌面二进制(PE/ELF/汇编/IDA/radare2)+ 网站 JS 逆向(反混淆/Webpack 解包/环境补全/签名还原/反调试)双线 10 个技能。聚合自多个 MIT 开源项目,版权归原作者所有。

Readme

pi-reverse-basics · 整理的 pi 基础通用逆向 skill 与工具

一套开箱即用的 pi coding agent 逆向工程基础技能包,覆盖桌面二进制网站 JS 两条主线,共 10 个 skill。

⚖️ 本包是多个 MIT 开源项目的聚合整理,版权归原作者所有,详见 THIRD_PARTY_NOTICES.md。仅用于对自有目标或已获书面授权目标的安全研究。

安装

pi install npm:pi-reverse-basics

安装后重启 pi 会话即可生效。用 pi list 确认技能加载。

技能清单

二进制线(4 个)

| Skill | 用途 | |---|---| | reverse-engineering | 综合方法论:陌生二进制体检流程、混淆/加壳/虚拟化目标、反调试、自定义 VM | | asm-analysis | 汇编级分析:GDB/LLDB/r2/Frida/angr 静态动态协同 | | ida-reverse | IDA Pro 工作流:PE/ELF/APK/DLL/SO 分析、ida-mcp 配合 | | radare2 | r2 命令行逆向与脚本化自动化 |

网站 JS 线(6 个)

| Skill | 用途 | |---|---| | js-reverse-ops | 四阶段总纲:Locate → Runtime → Recover → Replay + 工具选型基线 | | sign-crack | 请求签名算法定位 → Python 复现 → 本地验证 | | deobfuscate | OB 混淆 / Webpack / Eval 嵌套 / JSFuck 还原 | | webpack-unpack | 从大 bundle 提取模块与依赖链 | | env-patch | 生成 Node.js 浏览器环境补丁,本地复现网页 JS | | anti-debug | debugger 陷阱 / DevTools 检测 / 完整性校验绕过 |

配套工具链(需自行安装)

skill 只提供方法论,以下 CLI 工具需要装在本机:

# 二进制线
pip install frida-tools        # 动态插桩
# radare2: https://github.com/radareorg/radare2/releases 下载对应平台包,bin 加入 PATH
# IDA Pro(可选,商业软件):https://hex-rays.com

# 网站 JS 线
npm i -g webcrack wakaru @babel/cli

使用示例

> 帮我分析这个 target.dll 的授权校验逻辑
   → 自动路由 reverse-engineering(体检)→ ida-reverse/radare2(细看)

> 这个网站的 password 参数是加密的,帮我还原
   → 自动路由 sign-crack(主线)→ deobfuscate/webpack-unpack(排障)

License

MIT —— 聚合行为本身按 MIT 发布;各技能内容版权归其原始作者(见 THIRD_PARTY_NOTICES.md)。