• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

Source Code Get Browser Data - PowerShell

dEEpEst

☣☣ In The Depths ☣☣
Staff member
Administrator
Super Moderator
Hacker
Specter
Crawler
Shadow
Joined
Mar 29, 2018
Messages
13,859
Solutions
4
Reputation
27
Reaction score
45,545
Points
1,813
Credits
55,080
‎7 Years of Service‎
 
56%
Extract URLs from Chrome or Edge history/bookmark files (and partially from Firefox history), ignoring unsupported Firefox bookmarks.

Syntax
Code:
# 1) Get Chrome History
Get-BrowserData -Browser chrome -DataType history
# 2) Get Edge Bookmarks
Get-BrowserData -Browser edge -DataType bookmarks
# 3) Attempt naive Firefox history extraction
Get-BrowserData -Browser firefox -DataType history
# 4) Provide a search pattern (e.g., only match "facebook")
Get-BrowserData -Browser chrome -DataType history -Search "facebook"

Script
 
Back
Top