analyzing-browser-forensics-with-hindsight

analyzing-browser-forensics-with-hindsight is a skill for Claude Code from plurigrid/asi. It costs 53 tokens per session (2,723 once invoked), scanned A, a copy of analyzing-browser-forensics-with-hindsight, MIT.

A browser-forensics workflow for examining Chrome and other Chromium browser data with Hindsight. It combines records such as history, downloads, cookies, saved passwords, extensions, and cached content into a timeline.

In plain words
What is it for?
Use it to investigate incidents, insider-threat cases, or other authorized examinations of Chrome, Edge, Brave, Opera, or similar browsers.
Why use it?
It helps investigators reconstruct web activity from scattered browser databases instead of reviewing each artifact separately.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the asi plugin — 56 skills shipped together

Good fit Use it to investigate incidents, insider-threat cases, or other authorized examinations of Chrome, Edge, Brave, Opera, or similar browsers.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/plurigrid/asi/analyzing-browser-forensics-with-hindsight
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add plurigrid/asi --skill analyzing-browser-forensics-with-hindsight
Clone the repo
git clone --depth 1 https://github.com/plurigrid/asi

Made for: Claude Code.

Or install asi, the plugin that ships this one along with the rest of its 56 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for analyzing-browser-forensics-with-hindsight

README.md
[![agentmods](https://agentmods.dev/badge/skills/plurigrid/asi/analyzing-browser-forensics-with-hindsight/github.svg)](https://agentmods.dev/skills/plurigrid/asi/analyzing-browser-forensics-with-hindsight)
Your own site
<a href="https://agentmods.dev/skills/plurigrid/asi/analyzing-browser-forensics-with-hindsight"><img src="https://agentmods.dev/badge/skills/plurigrid/asi/analyzing-browser-forensics-with-hindsight/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for analyzing-browser-forensics-with-hindsight

Your own site · 80×15
<a href="https://agentmods.dev/skills/plurigrid/asi/analyzing-browser-forensics-with-hindsight"><img src="https://agentmods.dev/badge/skills/plurigrid/asi/analyzing-browser-forensics-with-hindsight.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,723 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 88% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00053 $0.02723
Opus 5 $0.00026 $0.01362
Sonnet 5 $0.00011 $0.00545
Haiku 4.5 $0.00005 $0.00272

Measured 6d ago against content hash 61c0a660738c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

analyzing-browser-forensics-with-hindsight scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

88% identical to analyzing-browser-forensics-with-hindsight — 25 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/asi/skills/analyzing-browser-forensics-with-hindsight/SKILL.md · 281 lines

How it starts

The opening of the file, as written. The whole thing — 281 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Analyzing Browser Forensics with Hindsight

Overview

Hindsight is an open-source browser forensics tool designed to parse artifacts from Google Chrome and other Chromium-based browsers (Microsoft Edge, Brave, Opera, Vivaldi). It extracts and correlates data from multiple browser database files to create a unified timeline of web activity. Hindsight can parse URLs, download history, cache records, bookmarks, autofill records, saved passwords, preferences, browser extensions, HTTP cookies, Local Storage (HTML5 cookies), login data, and session/tab information. The tool produces chronological timelines in multiple output formats (XLSX, JSON, SQLite) that enable investigators to reconstruct user web activity for incident response, insider threat investigations, and criminal cases.

When to Use

  • When investigating security incidents that require analyzing browser forensics with hindsight
  • When building detection rules or threat hunting queries for this domain
  • When SOC analysts need structured procedures for this analysis type
  • When validating security monitoring coverage for related attack techniques

Prerequisites

  • Python 3.8+ with Hindsight installed (pip install pyhindsight)
  • Access to browser profile directories from forensic image
  • Browser profile data (not encrypted with OS-level encryption)
  • Timeline Explorer or spreadsheet application for analysis

Browser Profile Locations

Browser Windows Profile Path
Chrome %LOCALAPPDATA%\Google\Chrome\User Data\Default\
Edge %LOCALAPPDATA%\Microsoft\Edge\User Data\Default\
Brave %LOCALAPPDATA%\BraveSoftware\Brave-Browser\User Data\Default\
Opera %APPDATA%\Opera Software\Opera Stable\
Vivaldi %LOCALAPPDATA%\Vivaldi\User Data\Default\
Chrome (macOS) ~/Library/Application Support/Google/Chrome/Default/
Chrome (Linux) ~/.config/google-chrome/Default/

Key Artifact Files

File Contents
History URL visits, downloads, keyword searches
Cookies HTTP cookies with domain, expiry, values
Web Data Autofill entries, saved credit cards
Login Data Saved usernames/passwords (encrypted)
Bookmarks JSON bookmark tree
Preferences Browser configuration and extensions
Local Storage/ HTML5 Local Storage per domain
Session Storage/ Session-specific storage per domain
Network Action Predictor Previously typed URLs
Shortcuts Omnibox shortcuts and predictions
Top Sites Frequently visited sites

Read the full file on GitHub · 281 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 281 lines · 53 tokens per session scan A 61c0a660738c

Subscribe to this mod's changes

analyzing-browser-forensics-with-hindsight is a skill published in the GitHub repository plurigrid/asi (62 stars, last pushed 2mo ago), licensed MIT. It adds 53 tokens to every session and 2,723 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to analyzing-browser-forensics-with-hindsight, differing in 25 lines, and is treated as a copy.

Related

Other skills, from other repositories

analyzing-browser-forensics-with-hindsight

Parse Chromium-based browser databases with Hindsight to extract and correlate browsing history, downloads, cookies, cached content, autofill data, saved passwords, and extensions from Chrome, Edge, Brave, Opera, and Vivaldi into a unified timeline (XLSX, JSON, or SQLite output). Use during incident response…

mukul975/Anthropic-Cybersecurity-Skills · 95 tokens

analyzing-browser-forensics-with-hindsight

Use when analyze Chromium-based browser artifacts using Hindsight to extract browsing history, downloads, cookies, cached content, autofill data, saved passwords, and browser extensions from Chrome, Edge, Brave, and Opera for forensic investigation. Use when analyzeing chromium-based browser artifacts using hindsight…

oyi77/1ai-skills · 70 tokens

analyzing-browser-forensics-with-hindsight

A browser-forensics guide using Hindsight to examine Chromium-based browser records from Chrome, Edge, Brave, Opera, and similar browsers. It can organize history, downloads, cookies, cached data, autofill, saved passwords, extensions, and sessions into a timeline.

killvxk/cybersecurity-skills-zh · 66 tokens

analyzing-browser-forensics-with-hindsight

Analyze Chromium-based browser artifacts using Hindsight to extract browsing history, downloads, cookies, cached content, autofill data, saved passwords, and browser extensions from Chrome, Edge, Brave, and Opera for forensic investigation.

26zl/cybersec-toolkit · 53 tokens

analyzing-browser-forensics-with-hindsight

Analyze Chromium-based browser artifacts using Hindsight to extract browsing history, downloads, cookies, cached content, autofill data, saved passwords, and browser extensions from Chrome, Edge, Brave, and Opera for forensic investigation.

adriannoes/awesome-agentic-ai · 53 tokens

analyzing-browser-forensics-with-hindsight

Analyze Chromium-based browser artifacts using Hindsight to extract browsing history, downloads, cookies, cached content, autofill data, saved passwords, and browser extensions from Chrome, Edge, Brave, and Opera for forensic investigation.

pinkpixel-dev/skills-collection-1 · 53 tokens