Moving up the Assemblyline Exposing malicious code in browse...#1994
Open
carlospolop wants to merge 1 commit intomasterfrom
Open
Moving up the Assemblyline Exposing malicious code in browse...#1994carlospolop wants to merge 1 commit intomasterfrom
carlospolop wants to merge 1 commit intomasterfrom
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://redcanary.com/blog/threat-detection/assemblyline-browser-extensions/ Content Categories: Based on the analysis, this content was categorized under "Pentesting Web -> Browser Extension Pentesting Methodology (add a subsection like "Detecting malicious extension updates / supply-chain compromise via static version diffing (Assemblyline)")". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Overview (problem + why it matters)
This post explains a defensive, version-diff-driven workflow to detect malicious browser extension updates (a common supply-chain compromise pattern). The key risk is that extensions are small code bundles with broad permissions and automatic updates, so a previously benign extension can become malicious without any user action. Red Canary notes that in enterprise environments the median number of unique extensions...
🔧 Technical Details
Static old-vs-new extension version diffing to detect supply-chain compromises: When an extension update is observed, submit both the previous and new extension packages to a static-analysis sandbox (e.g., Assemblyline) and compare the reports. Prioritize deltas that map to attacker capability changes: (1) new or modified service worker/background scripts (persistent privileged logic), (2) new or modified content scripts (DOM access/injection and data collection), (3) newly referenced domains (potential C2/exfil), and (4) newly triggered static-analysis signatures (e.g., Base64 decoding, cookie harvesting, suspicious network-request building, eval/obfuscation heuristics). Alerts are most reliable when these signals co-occur in the same update.
Pre-disclosure detection by removing threat-intel dependencies: To avoid only catching already-known malicious updates, disable threat-intel-feed-backed detections and instead rely on intrinsic static artifacts (extracted d...
🤖 Agent Actions
Summary
Files Changed
src/pentesting-web/browser-extension-pentesting-methodology/README.mdNotes
If you want any tweaks to the wording or scope, tell me where to adjust.
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.