rudra-ravi/frida-skills

frida-data-extraction

Use Frida to observe and extract runtime data such as HTTP, headers, tokens, JSON, crypto values, preferences, SQLite, files, memory, and byte arrays.

First seen May 12, 2026

Installation

$ npx skills add rudra-ravi/frida-skills --skill frida-data-extraction

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from rudra-ravi/frida-skills · top by installs.

npx skills add rudra-ravi/frida-skills

Browse all from rudra-ravi/frida-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,001 B
  • docs SUMMARY.md 179 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 67 installs

SKILL.md

Frida Data Extraction

Use this skill when the goal is to observe runtime data rather than bypass a check.

Rules

  • Only extract data from systems the user is authorized to test.
  • Avoid printing secrets into shared logs unless the user explicitly needs them.
  • Prefer structured logs with redaction for tokens, cookies, passwords, and private keys.
  • Copy pointer and retval data inside callbacks; Frida may recycle callback objects.

Android Boundaries

Java.perform(() => {
  const Base64 = Java.use("android.util.Base64");
  Base64.encodeToString.overload("[B", "int").implementation = function (bytes, flags) {
    const out = this.encodeToString(bytes, flags);
    console.log("Base64.encodeToString ->", out);
    return out;
  };
});

High-signal targets: request builders, JSON serializers, SharedPreferences, SQLite APIs, keystore wrappers, crypto APIs, WebView bridges, file I/O.

iOS Boundaries

High-signal targets: NSURLRequest, NSURLSession, NSJSONSerialization, Keychain wrappers, NSUserDefaults, SQLite, CommonCrypto, file APIs, pasteboard.

Native Buffers

function dump(ptr, len) {
  if (ptr.isNull() || len <= 0) return;
  console.log(hexdump(ptr, { length: Math.min(len, 256), ansi: false }));
}

Use both hex and text only when the data is valid text. Binary crypto material often is not.

Verification

  • Logs are tied to a user action or request.
  • The source and encoding of each value is clear.
  • Sensitive values are redacted unless needed.
  • The hook does not change the target behavior unless explicitly requested.

References