ida-assisted-ios-analysis

ida-assisted-ios-analysis is a skill for Claude Code from gyh20062008-commits/re-ios. It costs 74 tokens per session (740 once invoked), scanned A, original, MIT.

An optional helper for analyzing authorized iPhone and iPad Mach-O binaries with IDA Pro. It can provide deeper evidence about functions, symbols, strings, references, code calls, and network-related details.

In plain words
What is it for?
Use it to examine authorized iOS binaries or IDB files, trace callers and callees, inspect Objective-C or Swift code, and investigate imports, endpoints, and network evidence.
Why use it?
It adds detailed static analysis when ordinary binary inspection is not enough, without making IDA Pro required for the basic workflow.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the ios-reverse-engineering plugin — 2 skills, 2 commands shipped together

Good fit Use it to examine authorized iOS binaries or IDB files, trace callers and callees, inspect Objective-C or Swift code, and investigate imports, endpoints, and network evidence.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gyh20062008-commits/re-ios/ida-assisted-ios-analysis
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add gyh20062008-commits/re-ios --skill ida-assisted-ios-analysis
Clone the repo
git clone --depth 1 https://github.com/gyh20062008-commits/re-ios

Made for: Claude Code.

Or install ios-reverse-engineering, the plugin that ships this one along with the rest of its 2 skills, 2 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ida-assisted-ios-analysis

README.md
[![agentmods](https://agentmods.dev/badge/skills/gyh20062008-commits/re-ios/ida-assisted-ios-analysis/github.svg)](https://agentmods.dev/skills/gyh20062008-commits/re-ios/ida-assisted-ios-analysis)
Your own site
<a href="https://agentmods.dev/skills/gyh20062008-commits/re-ios/ida-assisted-ios-analysis"><img src="https://agentmods.dev/badge/skills/gyh20062008-commits/re-ios/ida-assisted-ios-analysis/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ida-assisted-ios-analysis

Your own site · 80×15
<a href="https://agentmods.dev/skills/gyh20062008-commits/re-ios/ida-assisted-ios-analysis"><img src="https://agentmods.dev/badge/skills/gyh20062008-commits/re-ios/ida-assisted-ios-analysis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 740 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00074 $0.00740
Opus 5 $0.00037 $0.00370
Sonnet 5 $0.00015 $0.00148
Haiku 4.5 $0.00007 $0.00074

Measured 12d ago against content hash b24ddcb762f7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

ida-assisted-ios-analysis scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/ios-reverse-engineering/skills/ida-assisted-ios-analysis/SKILL.md · 88 lines

How it starts

The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.

IDA Assisted iOS Analysis

This is an optional enhancement for authorized iOS Mach-O analysis. The base ios-reverse-engineering workflow must remain usable without IDA, IDA MCP, or an IDB.

Safety Rules

  • Only analyze binaries or IDBs the user is authorized to inspect.
  • Keep analysis static unless the user explicitly provides an authorized lab runtime scope.
  • Do not bypass FairPlay DRM, steal tokens, bypass certificate pinning, or attack discovered services.
  • Treat endpoint strings as evidence, not permission to make network requests.

MCP Availability

The plugin root includes .mcp.json with a default MCP server named ida using:

{
  "command": "ida-pro-mcp"
}

Before using IDA MCP, run:

bin/ida-pro-mcp-check

If ida-pro-mcp is missing, report that IDA-assisted analysis is unavailable and continue with the base static workflow if useful.

Workflow

  1. Verify ida-pro-mcp and IDA Pro availability with bin/ida-pro-mcp-check.
  2. Ask the user to open the authorized Mach-O or IDB in IDA if the MCP server requires an active IDA session.
  3. Verify MCP connectivity with the available IDA MCP status or metadata tool.
  4. Confirm the loaded file matches the requested Mach-O or IDB.
  5. List functions, imports, exports, and strings.
  6. Search for:
    • URLSession
    • NSURLRequest
    • Alamofire
    • AFNetworking
    • Apollo
    • GraphQL
    • WebSocket
    • token
    • authorization
    • signature
    • hmac
    • nonce
    • timestamp
  7. For endpoint strings, run xref analysis from each string address.
  8. For each referencing function, inspect callers and callees.
  9. Decompile or disassemble narrow target functions only when needed for evidence.
  10. Write:
    • ida-findings.md
    • ida-call-flow.md
    • ida-network-evidence.json

IDAPython Export Template

If MCP tooling supports running scripts, use:

scripts/ida_export_template.py

Set IDA_IOS_OUT or pass an output directory argument so the script writes the three ida-* files to the desired folder.

Read the full file on GitHub · 88 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 88 lines · 74 tokens per session scan A b24ddcb762f7

Subscribe to this mod's changes

ida-assisted-ios-analysis is a skill published in the GitHub repository gyh20062008-commits/re-ios (1 stars, last pushed 2mo ago), licensed MIT. It adds 74 tokens to every session and 740 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

systematic-debugging

Use when debugging a failing test, build error, or runtime issue that isn't immediately obvious. Guides a 4-phase root cause analysis instead of random fix attempts.

open-metadata/OpenMetadata · 37 tokens

diagnose

Trace from a reproduced symptom to the source code that causes it. Pin the specific file and approximate line, rate confidence in the cause and clarity of the fix independently, and always propose a concrete fix.

emdash-cms/emdash · 43 tokens

repro-admin

Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.

emdash-cms/emdash · 48 tokens

log-error-digest

Analyze log files to troubleshoot errors, identify peak error periods, and produce error clustering, frequency statistics, and time distribution reports. Supports JSON, syslog, and Nginx formats with automatic detection. Use when a user uploads a .log file and asks to analyze errors, find patterns, debug issues, or…

zebbern/claude-code-guide · 71 tokens

byted-util-volcengine-detect-retry

An orchestration workflow for Volcengine Cloud Detect, a service that checks websites or network endpoints from test locations.

bytedance/agentkit-samples · 101 tokens