mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
ad020cf135
* chore: downgrade golang version to 1.20, support windows 7 * chore: Update dependencies for Go project. - Update dependencies in go.sum - Improvements and optimizations in various files - Bug fixes and error handling enhancements * chore: Update modernc.org/sqlite library versions in go.mod and go.sum files - Update version of `modernc.org/sqlite` to `v1.31.1` in `go.mod` and `go.sum` files - Update module hash in `go.sum` file for `modernc.org/sqlite` - Ensure consistency between `go.mod` and `go.sum` files in relation to `modernc.org/sqlite` version * chore: replace log/slog with standard logger (#436) * chore: replace log/slog with standard logger * chore: Update Go dependencies and versions - Update Go version from `1.22.5` to `1.20` and other dependencies - Update critical dependencies to latest versions - Ensure compatibility with new versions of dependencies * chore: Optimize dependency management in workflows - Update build and lint workflows to use `go mod tidy` for getting dependencies - Change modules download mode to `'mod'` in linters configuration - Add step to get dependencies in lint workflow * refactor: Update dependencies and refactor Chromium key deletion logic - Update `modernc.org/sqlite` to `v1.31.1` in `go.mod` and `go.sum` - Increase version number to `0.5.0` in `cmd/hack-browser-data/main.go` - Refactor and update logic for filtering and copying items in `browser/chromium/chromium.go` * Improve logging functionality and data type conversion - Add `String()` method to `DataType` enum in types.go - Update log level to Debug in logger_test.go - Set log level to Debug in `TestLoggerDebug` and `TestLoggerDebugf` functions
138 lines
2.9 KiB
Go
138 lines
2.9 KiB
Go
package history
|
|
|
|
import (
|
|
"database/sql"
|
|
"os"
|
|
"sort"
|
|
"time"
|
|
|
|
// import sqlite3 driver
|
|
_ "modernc.org/sqlite"
|
|
|
|
"github.com/moond4rk/hackbrowserdata/extractor"
|
|
"github.com/moond4rk/hackbrowserdata/log"
|
|
"github.com/moond4rk/hackbrowserdata/types"
|
|
"github.com/moond4rk/hackbrowserdata/utils/typeutil"
|
|
)
|
|
|
|
func init() {
|
|
extractor.RegisterExtractor(types.ChromiumHistory, func() extractor.Extractor {
|
|
return new(ChromiumHistory)
|
|
})
|
|
extractor.RegisterExtractor(types.FirefoxHistory, func() extractor.Extractor {
|
|
return new(FirefoxHistory)
|
|
})
|
|
}
|
|
|
|
type ChromiumHistory []history
|
|
|
|
type history struct {
|
|
Title string
|
|
URL string
|
|
VisitCount int
|
|
LastVisitTime time.Time
|
|
}
|
|
|
|
const (
|
|
queryChromiumHistory = `SELECT url, title, visit_count, last_visit_time FROM urls`
|
|
)
|
|
|
|
func (c *ChromiumHistory) Extract(_ []byte) error {
|
|
db, err := sql.Open("sqlite", types.ChromiumHistory.TempFilename())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer os.Remove(types.ChromiumHistory.TempFilename())
|
|
defer db.Close()
|
|
|
|
rows, err := db.Query(queryChromiumHistory)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
for rows.Next() {
|
|
var (
|
|
url, title string
|
|
visitCount int
|
|
lastVisitTime int64
|
|
)
|
|
if err := rows.Scan(&url, &title, &visitCount, &lastVisitTime); err != nil {
|
|
log.Warnf("scan chromium history error: %v", 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"
|
|
}
|
|
|
|
func (c *ChromiumHistory) Len() int {
|
|
return len(*c)
|
|
}
|
|
|
|
type FirefoxHistory []history
|
|
|
|
const (
|
|
queryFirefoxHistory = `SELECT id, url, COALESCE(last_visit_date, 0), COALESCE(title, ''), visit_count FROM moz_places`
|
|
closeJournalMode = `PRAGMA journal_mode=off`
|
|
)
|
|
|
|
func (f *FirefoxHistory) Extract(_ []byte) error {
|
|
db, err := sql.Open("sqlite", types.FirefoxHistory.TempFilename())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer os.Remove(types.FirefoxHistory.TempFilename())
|
|
defer db.Close()
|
|
|
|
_, err = db.Exec(closeJournalMode)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer db.Close()
|
|
rows, err := db.Query(queryFirefoxHistory)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
for rows.Next() {
|
|
var (
|
|
id, visitDate int64
|
|
url, title string
|
|
visitCount int
|
|
)
|
|
if err = rows.Scan(&id, &url, &visitDate, &title, &visitCount); err != nil {
|
|
log.Errorf("scan firefox history error: %v", err)
|
|
}
|
|
*f = append(*f, history{
|
|
Title: title,
|
|
URL: url,
|
|
VisitCount: visitCount,
|
|
LastVisitTime: typeutil.TimeStamp(visitDate / 1000000),
|
|
})
|
|
}
|
|
sort.Slice(*f, func(i, j int) bool {
|
|
return (*f)[i].VisitCount < (*f)[j].VisitCount
|
|
})
|
|
return nil
|
|
}
|
|
|
|
func (f *FirefoxHistory) Name() string {
|
|
return "history"
|
|
}
|
|
|
|
func (f *FirefoxHistory) Len() int {
|
|
return len(*f)
|
|
}
|