HackBrowserData/internal/browingdata/history.go

106 lines
2.2 KiB
Go
Raw Normal View History

package browingdata
import (
"database/sql"
2022-04-11 11:57:40 +00:00
"os"
"sort"
2022-04-11 07:53:19 +00:00
_ "github.com/mattn/go-sqlite3"
2022-04-02 08:59:34 +00:00
2022-04-11 07:53:19 +00:00
"hack-browser-data/internal/item"
2022-04-12 03:29:01 +00:00
"hack-browser-data/internal/log"
"hack-browser-data/internal/utils/typeutil"
)
type ChromiumHistory []history
func (c *ChromiumHistory) Parse(masterKey []byte) error {
2022-04-11 07:53:19 +00:00
historyDB, err := sql.Open("sqlite3", item.TempChromiumHistory)
if err != nil {
return err
}
2022-04-11 11:57:40 +00:00
defer os.Remove(item.TempChromiumHistory)
defer historyDB.Close()
rows, err := historyDB.Query(queryChromiumHistory)
if err != nil {
return err
}
defer rows.Close()
for rows.Next() {
var (
url, title string
visitCount int
lastVisitTime int64
)
// TODO: handle rows error
if err := rows.Scan(&url, &title, &visitCount, &lastVisitTime); err != nil {
2022-04-12 03:29:01 +00:00
log.Warn(err)
}
data := history{
Url: url,
Title: title,
VisitCount: visitCount,
LastVisitTime: typeutil.TimeEpoch(lastVisitTime),
}
*c = append(*c, data)
}
sort.Slice(*c, func(i, j int) bool {
return (*c)[i].VisitCount > (*c)[j].VisitCount
})
return nil
}
func (c *ChromiumHistory) Name() string {
return "history"
}
2022-01-11 10:19:17 +00:00
type FirefoxHistory []history
func (f *FirefoxHistory) Parse(masterKey []byte) error {
var (
err error
keyDB *sql.DB
historyRows *sql.Rows
)
2022-04-11 07:53:19 +00:00
keyDB, err = sql.Open("sqlite3", item.TempFirefoxHistory)
2022-01-11 10:19:17 +00:00
if err != nil {
return err
}
2022-04-11 12:53:50 +00:00
defer os.Remove(item.TempFirefoxHistory)
defer keyDB.Close()
2022-01-11 10:19:17 +00:00
_, err = keyDB.Exec(closeJournalMode)
if err != nil {
return err
}
defer keyDB.Close()
historyRows, err = keyDB.Query(queryFirefoxHistory)
if err != nil {
return err
}
defer historyRows.Close()
for historyRows.Next() {
var (
id, visitDate int64
url, title string
visitCount int
)
if err = historyRows.Scan(&id, &url, &visitDate, &title, &visitCount); err != nil {
2022-04-12 03:29:01 +00:00
log.Warn(err)
2022-01-11 10:19:17 +00:00
}
*f = append(*f, history{
Title: title,
Url: url,
VisitCount: visitCount,
LastVisitTime: typeutil.TimeStamp(visitDate / 1000000),
2022-01-11 10:19:17 +00:00
})
}
sort.Slice(*f, func(i, j int) bool {
return (*f)[i].VisitCount < (*f)[j].VisitCount
})
return nil
}
func (f *FirefoxHistory) Name() string {
return "history"
}