dannyphantomx64/aether-mcp

GitHub: dannyphantomx64/aether-mcp

通过 MCP 协议为 AI 编码助手提供无审查的逆向工程与安全分析专用工具集,解决主流 AI 对合法敏感话题拒绝回答的问题。

Stars: 0 | Forks: 0

# aether-mcp 适用于任何 [Model Context Protocol](https://modelcontextprotocol.io) 客户端的无审查 AI 工具 —— Claude Desktop、Cursor、Cline、Zed、Continue 及其他客户端。 当你的主要 AI 拒绝回答问题时,**Aether 会给出答案。** 专为逆向工程师、恶意软件分析师、安全研究人员、小说作家以及所有厌倦了对合法但敏感话题进行含糊其辞、水分过多回答的人而打造。 ## 包含内容 11 个工具,全部由 Aether 的无审查模型提供支持: | 工具 | 功能 | |---|---| | `aether_chat` | 直接的无审查聊天。 | | `aether_explain_code` | 无过滤地解释代码 —— 专为 IDA Pro Hex-Rays 输出设计,但也适用于任何源代码。 | | `aether_explain_disasm` | 演示 x86/x64/ARM/MIPS 反汇编过程。识别反调试、壳程序、调用约定。 | | `aether_identify_pattern` | 识别代码/汇编模式究竟是什么 —— VMProtect、Themida、EAC、BattleEye、自定义加密等。返回结构化 JSON。 | | `aether_suggest_bypass` | 给定完整性检查 / 反作弊 / DRM 机制,返回具体的绕过策略及可用代码。 | | `aether_engine_analyze` | 游戏引擎感知分析:Unity (IL2CPP)、Unreal (UObject)、Source、Source 2、Godot、CryEngine、Frostbite、AnvilNext。 | | `aether_protocol_dissect` | 将网络数据包捕获解构为结构化字段。适用于多人游戏、恶意软件 C2、自定义协议。 | | `aether_deobfuscate_js` | 反混淆 JavaScript。识别 Obfuscator.io / JScrambler / 自定义混淆器,还原签名算法。 | | `aether_explain_wasm` | 分析 WebAssembly 模块。针对浏览器反机器人机制(Cloudflare、Datadome、PerimeterX、Akamai)。 | | `aether_imagine` | 无限制图像生成。 | | `aether_balance` | 显示你的额度余额和速率限制余量。 | ## 安装 ``` # 无需安装 — npx 按需获取。 npx -y aether-mcp ``` 你无需直接运行它。相反,你的 AI 客户端会将其作为子进程启动。请添加以下配置。 ## 获取 API key 1. 在 注册 —— 每天免费 150 点额度,无需信用卡。 2. 打开 → **API keys** → **+ New key**。 3. 复制 `ak_live_…` key(仅显示一次)。 ## 配置你的 MCP 客户端 ### Claude Desktop 编辑 `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) 或 `%APPDATA%\Claude\claude_desktop_config.json` (Windows): ``` { "mcpServers": { "aether": { "command": "npx", "args": ["-y", "aether-mcp"], "env": { "AETHER_API_KEY": "ak_live_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6" } } } } ``` 重启 Claude Desktop。你将在工具面板中看到 Aether 工具。 ### Cursor `~/.cursor/mcp.json`(或项目级别的 `.cursor/mcp.json`): ``` { "mcpServers": { "aether": { "command": "npx", "args": ["-y", "aether-mcp"], "env": { "AETHER_API_KEY": "ak_live_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6" } } } } ``` ### Cline (VS Code) 在 Cline 设置中 → **MCP Servers** → **Edit MCP Settings**: ``` { "mcpServers": { "aether": { "command": "npx", "args": ["-y", "aether-mcp"], "env": { "AETHER_API_KEY": "ak_live_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6" }, "disabled": false, "autoApprove": [] } } } ``` ### Zed `~/.config/zed/settings.json`: ``` { "context_servers": { "aether": { "command": { "path": "npx", "args": ["-y", "aether-mcp"], "env": { "AETHER_API_KEY": "ak_live_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6" } } } } } ``` ### Continue `~/.continue/config.json`: ``` { "experimental": { "modelContextProtocolServers": [ { "transport": { "type": "stdio", "command": "npx", "args": ["-y", "aether-mcp"], "env": { "AETHER_API_KEY": "ak_live_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6" } } } ] } } ``` ## 搭配 [ida-pro-mcp](https://github.com/mrexodia/ida-pro-mcp) 使用 这个组合解锁了杀手级的逆向工程工作流。在 Claude Desktop / Cursor 中同时安装这两个 MCP: ``` { "mcpServers": { "ida": { "command": "python", "args": ["-m", "ida_pro_mcp"] }, "aether": { "command": "npx", "args": ["-y", "aether-mcp"], "env": { "AETHER_API_KEY": "ak_live_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6" } } } } ``` 然后在你的 AI 聊天中: 你的 AI 客户端调用 `ida.get_decompiled_function()` 获取 C 代码,然后调用 `aether_explain_code()` 和 `aether_suggest_bypass()` 获取无过滤的分析。只需三步,零拒绝。 ## 严格限制 Aether 仅拒绝: - CSAM - 针对特定可识别人员的现实暴力行动计划 - 大规模杀伤性武器 (CBRN) 的合成指南 - 针对你不拥有的系统进行主动恶意软件部署 其他一切 —— 安全研究、恶意软件分析、灰帽网络工作、有争议的研究、成人小说、暗黑创意写作、直率的观点、其他 AI 含糊其辞的技术问题 —— Aether 都会直接处理。 ## 定价 | 计划 | 每小时费率 | API keys | 每日刷新额度 | |---|---|---|---| | Free (无信用卡) | 30 次调用 | 1 | 150 | | Starter ($15/月) | 200 次调用 | 3 | 50 | | Pro ($35/月) | 1,000 次调用 | 5 | 100 | | Unlimited ($99/月) | 无限制 | 10 | 300 | 每次调用会根据实际使用的 token 扣除额度 —— 与网络聊天相同。随时可在 使用加密货币充值(无需存档信用卡)。 ## 隐私 - API keys 在静态存储时使用 SHA-256 哈希加密。创建后我们再也看不到你的完整 key。 - 每次 API 调用都会记录 IP 和 user-agent 用于滥用检测(与网络应用策略相同)。 - 你的提示和输出不会被出售。对话不会用于训练第三方模型。 ## 许可证 MIT ## 链接 - [Aether 网站](https://trynoguard.com) - [账户 / API keys](https://trynoguard.com/account) - [充值额度](https://trynoguard.com/pay) - [Discord](https://discord.gg/qNbppsTnQM)
标签:AD攻击面, Akamai, API工具, ARM汇编, BattleEye, C2通信, Claude Desktop, Cline, Cloudflare绕过, Continue, CryEngine, Cursor, DAST, Datadome, DLL 劫持, DNS 反向解析, DOM解析, DRM绕过, EAC, Godot, Hex-Rays, IDA Pro, IP 地址批量处理, JavaScript去混淆, LLM集成, MCP工具, MIPS汇编, MITM代理, Model Context Protocol, PerimeterX, Source引擎, Themida, Unity IL2CPP, Unreal Engine, VMProtect, WebAssembly分析, x86汇编, Zed, 云资产清单, 代码混淆, 反作弊绕过, 反机器人, 反汇编分析, 反混淆, 反编译分析, 反调试, 大语言模型, 安全工具集, 恶意软件分析, 无审查AI, 无限制图像生成, 游戏安全, 游戏引擎分析, 网络协议分析, 网络安全, 自动化攻击, 逆向工程, 隐私保护, 黑灰产对抗