browsingdata

package
v0.0.0-...-cfa9b1f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 16, 2026 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetLoginData

func GetLoginData(base64MasterKey string, path string) ([]loginData, error)

Types

type ChromiumCookie

type ChromiumCookie []Cookie

type ChromiumExtension

type ChromiumExtension []Extension

type ChromiumHistory

type ChromiumHistory []History
type Cookie struct {
	Host    string `json:"host"`
	Path    string `json:"path"`
	KeyName string `json:"keyname"`

	Value        string    `json:"value"`
	IsSecure     bool      `json:"secure"`
	IsHTTPOnly   bool      `json:"httponly"`
	HasExpire    bool      `json:"has_expire"`
	IsPersistent bool      `json:"persistent"`
	CreateDate   time.Time `json:"create_date"`
	ExpireDate   time.Time `json:"expire_date"`
	// contains filtered or unexported fields
}

func GetCookie

func GetCookie(base64MasterKey string, path string) ([]Cookie, error)

type CreditCard

type CreditCard struct {
	GUID            string `json:"guid"`
	Name            string `json:"name_on_card"`
	ExpirationMonth string `json:"expiration_month"`
	ExpirationYear  string `json:"expiration_year"`
	CardNumber      string `json:"card_number"`
	Address         string `json:"billing_address_id"`
	NickName        string `json:"nickname"`
	// contains filtered or unexported fields
}

CreditCard represents a Chrome credit card entry

func GetCreditCard

func GetCreditCard(base64MasterKey string, path string) ([]CreditCard, error)

GetCreditCard extracts and decrypts credit card data from Chrome's Web Data database

type Extension

type Extension struct {
	ID          string `json:"id"`
	Name        string `json:"name"`
	Version     string `json:"version"`
	Description string `json:"description"`
	Enabled     bool   `json:"enabled"`
	HomepageURL string `json:"homepage_url"`
	StoreURL    string `json:"store_url"`
}

func GetExtension

func GetExtension(path string) ([]Extension, error)

type History

type History struct {
	URL           string    `json:"url"`
	Title         string    `json:"title"`
	VisitCount    int       `json:"visit_count"`
	LastVisitTime time.Time `json:"last_visit_time"`
}

func GetHistory

func GetHistory(path string) ([]History, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL