Documentation
¶
Index ¶
Constants ¶
View Source
const ( ChromeCreditFile = "Web Data" ChromePasswordFile = "Login Data" ChromeHistoryFile = "History" ChromeDownloadFile = "History" ChromeCookieFile = "Cookies" ChromeBookmarkFile = "Bookmarks" FirefoxCookieFile = "cookies.sqlite" FirefoxKey4File = "key4.db" FirefoxLoginFile = "logins.json" FirefoxDataFile = "places.sqlite" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Bookmarks ¶
type Bookmarks struct { Bookmarks []bookmark // contains filtered or unexported fields }
func (*Bookmarks) ChromeParse ¶
func (*Bookmarks) FirefoxParse ¶
type Cookies ¶
type Cookies struct { Cookies map[string][]cookie // contains filtered or unexported fields }
func (*Cookies) ChromeParse ¶
func (*Cookies) FirefoxParse ¶
type HistoryData ¶
type HistoryData struct { History []history // contains filtered or unexported fields }
func (*HistoryData) ChromeParse ¶
func (h *HistoryData) ChromeParse(key []byte) error
func (*HistoryData) CopyDB ¶
func (h *HistoryData) CopyDB() error
func (*HistoryData) FirefoxParse ¶
func (h *HistoryData) FirefoxParse() error
func (*HistoryData) OutPut ¶
func (h *HistoryData) OutPut(format, browser, dir string) error
func (*HistoryData) Release ¶
func (h *HistoryData) Release() error
type Item ¶
type Item interface { // ChromeParse parse chrome items, Password and Cookie need secret key ChromeParse(key []byte) error // FirefoxParse parse firefox items FirefoxParse() error // OutPut file name and format type OutPut(format, browser, dir string) error // CopyDB is copy item db file to current dir CopyDB() error // Release is delete item db file Release() error }
func NewBookmarks ¶
func NewCPasswords ¶
func NewCookies ¶
func NewDownloads ¶
func NewFPasswords ¶
func NewHistoryData ¶
Click to show internal directories.
Click to hide internal directories.