/check-browser-hijack
Detect browser hijacking including homepage changes, search engine modifications, and malicious extensions
$ npx -y skills add DeepBitsTechnology/claude-plugins --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/check-browser-hijack
Context preview
What this command does when you run it.
Detect browser hijacking including homepage changes, search engine modifications, and malicious extensions
Command definition
check-browser-hijack.mdname: check-browser-hijack
description: Detect browser hijacking including homepage changes, search engine modifications, and malicious extensions
Browser Hijacking Detection
Scan all installed browsers for signs of hijacking, unauthorized modifications, and malicious extensions.
Browsers to Check
- Google Chrome
- Mozilla Firefox
- Microsoft Edge
- Internet Explorer
- Brave
- Opera
Detection Areas
1. Browser Settings Files
Check for unauthorized modifications in:
Chrome
- `%LOCALAPPDATA%\Google\Chrome\User Data\Default\Preferences`
- `%LOCALAPPDATA%\Google\Chrome\User Data\Default\Secure Preferences`
- Look for: homepage_url, default_search_provider, homepage
Firefox
- `%APPDATA%\Mozilla\Firefox\Profiles\*.default*\prefs.js`
- Look for: browser.startup.homepage, browser.search.defaultenginename
Edge
- `%LOCALAPPDATA%\Microsoft\Edge\User Data\Default\Preferences`
- Similar structure to Chrome
2. Browser Extensions
Scan extension directories:
Chrome Extensions
- `%LOCALAPPDATA%\Google\Chrome\User Data\Default\Extensions\`
- Check for unknown or suspicious extension IDs
- Review extension manifest.json files for:
- Excessive permissions
- Unknown developers
- Suspicious URLs
Firefox Add-ons
- `%APPDATA%\Mozilla\Firefox\Profiles\*.default*\extensions\`
- Review extensions.json
Edge Extensions
- `%LOCALAPPDATA%\Microsoft\Edge\User Data\Default\Extensions\`
3. Browser Shortcuts
Check desktop and taskbar shortcuts for hijacking:
# Check Chrome shortcut target
Get-ItemProperty "C:\Users\*\Desktop\*.lnk" | Select-Object Target
Look for modified targets with:
- Suspicious command line arguments
- URLs appended to shortcuts
- Redirects to unwanted sites
4. Registry Browser Settings
# IE/Edge HomePage
HKCU:\Software\Microsoft\Internet Explorer\Main -> "Start Page"
# Default search providers
HKCU:\Software\Microsoft\Internet Explorer\SearchScopes
# Browser policies
HKCU:\Software\Policies\Microsoft\Edge
HKCU:\Software\Policies\Google\Chrome
5. Proxy Settings
Check for unauthorized proxy configurations:
HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings
Look for:
- ProxyEnable = 1 (when not expected)
- ProxyServer settings
- AutoConfigURL (PAC file hijacking)
6. Hosts File
Check for redirections:
- `C:\Windows\System32\drivers\etc\hosts`
- Look for suspicious entries redirecting popular sites
Analysis Steps
1. **Inventory all installed browsers** 2. **Check each browser's configuration files** 3. **Scan extension directories** 4. **Verify shortcut targets** 5. **Review registry settings** 6. **Check proxy and DNS settings** 7. **Examine hosts file**
Indicators of Hijacking
Critical Signs
- Homepage changed to unknown search engine
- Default search provider modified
- Extensions installed without user knowledge
- Shortcuts modified with appended URLs
- Proxy settings enabled unexpectedly
- Hosts file redirections
Common Hijacker Behaviors
- Redirect to ad-filled search pages
- Pop-up advertisements
- New tabs opening to specific sites
- Search queries redirected
- Browser toolbars added
Output Format
## Browser Hijacking Scan Report
### Executive Summary
[Status: Clean / Hijacked / Suspicious Activity Detected]
### Browsers Analyzed
- [x] Google Chrome - [Status]
- [x] Mozilla Firefox - [Status]
- [x] Microsoft Edge - [Status]
- [x] Internet Explorer - [Status]
### Findings
#### Critical Issues
1. **[Browser Name] - [Issue Type]**
- Location: [file path or registry key]
- Evidence: [specific finding]
- Severity: Critical/High
- Recommendation: [action]
#### Suspicious Extensions
1. **Extension Name** (Browser)
- ID: [extension ID]
- Location: [path]
- Permissions: [list concerning permissions]
- Recommendation: Remove/Investigate
#### Modified Settings
- Homepage: [current vs expected]
- Search Engine: [current vs expected]
- Proxy: [enabled/disabled - details]
### Clean Items
[List verified legitimate configurations]
### Remediation Steps
1. [Step-by-step removal instructions]
2. Reset browser settings to defaults
3. Remove malicious extensions
4. Clear browser cache and cookies
5. Verify shortcuts
6. Check for associated malware
### Prevention Recommendations
- Install reputable ad blocker
- Avoid clicking suspicious links
- Keep browser updated
- Review extension permissions regularly
Begin the browser hijacking scan now.
Read more
name: check-browser-hijack description: Detect browser hijacking including homepage changes, search engine modifications, and malicious extensions
Browser Hijacking Detection
Scan all installed browsers for signs of hijacking, unauthorized modifications, and malicious extensions.
Browsers to Check
- Google Chrome
- Mozilla Firefox
- Microsoft Edge
- Internet Explorer
- Brave
- Opera
Detection Areas
1. Browser Settings Files
Check for unauthorized modifications in:
Chrome
- `%LOCALAPPDATA%\Google\Chrome\User Data\Default\Preferences`
- `%LOCALAPPDATA%\Google\Chrome\User Data\Default\Secure Preferences`
- Look for: homepage_url, default_search_provider, homepage
Firefox
- `%APPDATA%\Mozilla\Firefox\Profiles\*.default*\prefs.js`
- Look for: browser.startup.homepage, browser.search.defaultenginename
Edge
- `%LOCALAPPDATA%\Microsoft\Edge\User Data\Default\Preferences`
- Similar structure to Chrome
2. Browser Extensions
Scan extension directories:
Chrome Extensions
- `%LOCALAPPDATA%\Google\Chrome\User Data\Default\Extensions\`
- Check for unknown or suspicious extension IDs
- Review extension manifest.json files for:
- Excessive permissions
- Unknown developers
- Suspicious URLs
Firefox Add-ons
- `%APPDATA%\Mozilla\Firefox\Profiles\*.default*\extensions\`
- Review extensions.json
Edge Extensions
- `%LOCALAPPDATA%\Microsoft\Edge\User Data\Default\Extensions\`
3. Browser Shortcuts
Check desktop and taskbar shortcuts for hijacking:
# Check Chrome shortcut target Get-ItemProperty "C:\Users\*\Desktop\*.lnk" | Select-Object Target
Look for modified targets with:
- Suspicious command line arguments
- URLs appended to shortcuts
- Redirects to unwanted sites
4. Registry Browser Settings
# IE/Edge HomePage HKCU:\Software\Microsoft\Internet Explorer\Main -> "Start Page" # Default search providers HKCU:\Software\Microsoft\Internet Explorer\SearchScopes # Browser policies HKCU:\Software\Policies\Microsoft\Edge HKCU:\Software\Policies\Google\Chrome
5. Proxy Settings
Check for unauthorized proxy configurations:
HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings
Look for:
- ProxyEnable = 1 (when not expected)
- ProxyServer settings
- AutoConfigURL (PAC file hijacking)
6. Hosts File
Check for redirections:
- `C:\Windows\System32\drivers\etc\hosts`
- Look for suspicious entries redirecting popular sites
Analysis Steps
1. **Inventory all installed browsers** 2. **Check each browser's configuration files** 3. **Scan extension directories** 4. **Verify shortcut targets** 5. **Review registry settings** 6. **Check proxy and DNS settings** 7. **Examine hosts file**
Indicators of Hijacking
Critical Signs
- Homepage changed to unknown search engine
- Default search provider modified
- Extensions installed without user knowledge
- Shortcuts modified with appended URLs
- Proxy settings enabled unexpectedly
- Hosts file redirections
Common Hijacker Behaviors
- Redirect to ad-filled search pages
- Pop-up advertisements
- New tabs opening to specific sites
- Search queries redirected
- Browser toolbars added
Output Format
## Browser Hijacking Scan Report ### Executive Summary [Status: Clean / Hijacked / Suspicious Activity Detected] ### Browsers Analyzed - [x] Google Chrome - [Status] - [x] Mozilla Firefox - [Status] - [x] Microsoft Edge - [Status] - [x] Internet Explorer - [Status] ### Findings #### Critical Issues 1. **[Browser Name] - [Issue Type]** - Location: [file path or registry key] - Evidence: [specific finding] - Severity: Critical/High - Recommendation: [action] #### Suspicious Extensions 1. **Extension Name** (Browser) - ID: [extension ID] - Location: [path] - Permissions: [list concerning permissions] - Recommendation: Remove/Investigate #### Modified Settings - Homepage: [current vs expected] - Search Engine: [current vs expected] - Proxy: [enabled/disabled - details] ### Clean Items [List verified legitimate configurations] ### Remediation Steps 1. [Step-by-step removal instructions] 2. Reset browser settings to defaults 3. Remove malicious extensions 4. Clear browser cache and cookies 5. Verify shortcuts 6. Check for associated malware ### Prevention Recommendations - Install reputable ad blocker - Avoid clicking suspicious links - Keep browser updated - Review extension permissions regularly
Begin the browser hijacking 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
Other commands on deepbitstechnology-claude-plugins.
- /analyze-binary
Upload and analyze a suspicious binary file using the remote Dr. Binary MCP tools
Open command - /check-network
Monitor active network connections and detect suspicious network activity
Open command - /find-cves
Query the Android/AOSP kernel CVE database by CVE id, version, build date, or branch
Open command - /scan-registry
Deep scan of Windows Registry for malware persistence and unauthorized modifications
Open command - /scan-suspicious-files
Scan file system for suspicious files in common malware locations
Open command - /scan-system
Perform comprehensive system security scan for malware, hijacking, and suspicious activity
Open command

