analyze-binary
Upload and analyze a suspicious binary file using the remote Dr. Binary MCP tools
Scan file system for suspicious files in common malware locations
> /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.
/scan-suspicious-filesContext preview
What this command does when you run it.
Scan file system for suspicious files in common malware locations
name: scan-suspicious-files description: Scan file system for suspicious files in common malware locations
Scan the local file system for suspicious files, malware indicators, and unauthorized modifications.
%TEMP% - Temporary files directory %TMP% - Alternative temp directory %APPDATA% - Application data %LOCALAPPDATA% - Local application data %PROGRAMDATA% - Program data (shared) %USERPROFILE%\Downloads - Downloads folder %USERPROFILE%\Desktop - Desktop C:\Users\Public - Public user directory C:\Windows\Temp - System temp directory C:\Windows\System32\Tasks - Scheduled tasks
%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup %PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs\Startup C:\Windows\System32\drivers - Kernel drivers C:\Windows\SysWOW64 - 32-bit on 64-bit system
Look for executables and scripts:
Get-ChildItem -Hidden -System -Recurse
Get-AuthenticodeSignature *.exe | Where-Object {$_.Status -ne 'Valid'}For each target directory: 1. List all files recursively 2. Filter by suspicious criteria 3. Check file metadata (size, dates, attributes)
For suspicious files: 1. Calculate hash (MD5, SHA256) 2. Check digital signature 3. Extract metadata (PE info, version info) 4. Review file strings 5. Check file reputation (VirusTotal hash lookup)
Look for:
Rank findings by:
# Recent executables in temp
Get-ChildItem -Path $env:TEMP -Recurse -Include *.exe,*.dll -ErrorAction SilentlyContinue |
Where-Object {$_.LastWriteTime -gt (Get-Date).AddDays(-7)}
# Hidden files
Get-ChildItem -Path $env:APPDATA -Recurse -Hidden -ErrorAction SilentlyContinue
# Unsigned executables
Get-ChildItem -Path $env:LOCALAPPDATA -Recurse -Include *.exe -ErrorAction SilentlyContinue |
Get-AuthenticodeSignature | Where-Object {$_.Status -ne 'Valid'}
# Large files in temp
Get-ChildItem -Path $env:TEMP -Recurse -File -ErrorAction SilentlyContinue |
Where-Object {$_.Length -gt 10MB}## Suspicious File Scan Report ### Scan Summary - Directories Scanned: [count] - Files Analyzed: [count] - Suspicious Files Found: [count] - Critical Threats: [count] ### Critical Findings #### 1. [Filename] - **Path**: [full path] - **Size**: [bytes] - **Created**: [timestamp] - **Modified**: [timestamp] - **MD5**: [hash] - **SHA256**: [hash] - **Signed**: Yes/No - **Reason**: [why flagged] - **Risk Level**: Critical/High/Medium/Low - **Recommendation**: [action] ### Suspicious Files by Location #### %TEMP% - [List of files with basic info] #### %APPDATA% - [List of files with basic info] #### [Other Locations] - [List of files with basic info] ### File Clusters [Group related files that appear to be from same source] ### Recommendations 1. **Immediate Actions** - Quarantine critical threats - Disconnect from network if active malware detected 2. **Analysis** - Upload suspicious binaries for deep analysis - Check process list for running threats 3. **Remediation** - Remove confirmed malware - Clear temp directories - Run full antivirus scan 4. **Prevention** - Enable Windows Defender real-time protection - Keep system updated - Avoid running unknown executables
Begin the suspicious file scan now.
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
Upload and analyze a suspicious binary file using the remote Dr. Binary MCP tools
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
Perform comprehensive system security scan for malware, hijacking, and suspicious activity