check-browser-hijack
Detect browser hijacking including homepage changes, search engine modifications, and malicious extensions
Upload and analyze a suspicious binary file using the remote Dr. Binary MCP tools
> /plugin marketplace add DeepBitsTechnology/claude-plugins > /plugin install drbinary-chat-plugin@deepbits
How it fires
How this command gets triggered: by you, by Claude, or both.
/analyze-binaryContext preview
What this command does when you run it.
Upload and analyze a suspicious binary file using the remote Dr. Binary MCP tools
name: analyze-binary description: Upload and analyze a suspicious binary file using the remote Dr. Binary MCP tools
Analyze a suspicious binary file using the remote Dr. Binary MCP server (Rizin triage, sandboxed deep analysis, and Ghidra decompilation).
Provide the full path to the suspicious file you want to analyze.
The remote server cannot read your local filesystem, so the file must be uploaded first:
1. Call `prepare_upload(file_name="<name to store as>")`. It returns a one-time `curl` command (valid 10 minutes) with an `<ABSOLUTE_LOCAL_PATH>` placeholder. 2. Run that `curl` yourself with the Bash tool, substituting `<ABSOLUTE_LOCAL_PATH>` with the absolute path to the local file. The bytes upload directly to the server and never pass through the model context. 3. After a successful upload, refer to the file by its stored filename (the sandbox CWD is the workspace root) in all subsequent tool calls.
If the link has expired or was already used, call `prepare_upload` again for a fresh one.
Call `inspect_binary(filepath="<filename>")` for fast rz-bin triage:
1. **Basic File Information** — file size and type, PE/ELF/Mach-O header, entrypoints 2. **Imports / Exports** — API calls and exported functions 3. **Sections** — .text, .data, .rsrc, etc. 4. **Strings & Symbols** — readable strings and symbol-derived functions
(For hashes like MD5/SHA256, compute them in `run_sandbox`, e.g. `sha256sum <filename>`.)
Use `run_sandbox(command="rizin -qc '<commands>' <filename>")` for focused analysis:
The sandbox also provides radare2, binwalk, xxd, angr/pwntools/qiling (python3), qemu (`qemu-{arch} -strace ...`), apktool, jadx, and more. `run_sandbox` accepts an optional `timeout` (default 120s, max 600s).
For broad decompilation across all functions, use `dump_data(filepath="<filename>")`, then `list_files` / `read_file` to read the output.
Provide comprehensive findings with:
## Binary Analysis Report ### File Information - Filename: [name] - Path: [original path] - Size: [bytes] - MD5: [hash] - SHA256: [hash] - Type: [PE32/PE64/DLL/ELF/Mach-O/etc] ### Analysis Summary [1-2 paragraph overview] ### Capabilities Detected - [ ] Network Communication - [ ] File System Access - [ ] Registry Modification - [ ] Process Manipulation - [ ] Keylogging - [ ] Screenshot Capture - [ ] Persistence Mechanism ### Detailed Findings 1. **[Category]** - Evidence: [specific code/strings/API calls] - Significance: [explanation] - Risk: [High/Medium/Low] ### Threat Assessment - Classification: [Trojan/Adware/RAT/Ransomware/etc] - Severity: Critical/High/Medium/Low - Confidence: High/Medium/Low ### Indicators of Compromise - File hashes - Mutex names - Registry keys - URLs/IPs - File paths ### Recommendations 1. [Immediate actions] 2. [Remediation steps] 3. [Prevention measures]
Begin the analysis with the provided file path: upload it via `prepare_upload` + `curl`, then triage and dig in.
The Plugin equips Claude Code with advanced binary analysis capabilities for tasks such as incident response, malware investigation, and vulnerability assessment. It connects to the remote Dr.
Repo: DeepBitsTechnology/claude-plugins
Detect browser hijacking including homepage changes, search engine modifications, and malicious extensions
Monitor active network connections and detect suspicious network activity
Query the Android/AOSP kernel CVE database by CVE id, version, build date, or branch
Deep scan of Windows Registry for malware persistence and unauthorized modifications
Scan file system for suspicious files in common malware locations
Perform comprehensive system security scan for malware, hijacking, and suspicious activity