mang0cola/frida_dsh_plugin0

frida-dsh-plugin

Frida device instrumentation tools for DeepSeek Harness

AI 分析

核心用途为移动端逆向与动态分析。适合安全研究员或逆向工程师,使 AI 能够调用 Frida 脚本对目标应用进行插桩调试。

パッケージ
frida-dsh-plugin
バージョン
0.1.0
ライセンス
MIT
最終更新
2026/08/15

インストール

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:mang0cola/frida_dsh_plugin

ドキュメント

README 全文を読む ↗

使用已有 Frida Python 虚拟环境

下面的配置适用于设备端 Frida 16.0.2、宿主 Node 版本无法加载同版本 frida-node 的场景:

- id: frida-runtime
  config:
    backend: python
    pythonExecutable: '/absolute/path/to/frida-16/bin/python'
    capabilityProfile: templates
    approvalMode: ask
    devices:
      - alias: usb16
        kind: usb
        timeoutMs: 30000
    defaultDevice: usb16
    targetAllowlist:
      - 'com.example.*'
    allowKill: false
    operationTimeoutMs: 30000
    maxSessions: 4
    maxScriptsPerSession: 4
    maxScriptBytes: 262144
    eventBufferSize: 1000
    maxEventDataBytes: 65536

pythonExecutable 是部署方信任边界内的本机可执行文件路径,不会暴露为模型参数。该 Python 环境必须已经安装与设备端兼容的 frida 包。