mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
support brave browser, Close #31
This commit is contained in:
@@ -184,6 +184,9 @@ func (c *cookies) ChromeParse(secretKey []byte) error {
|
||||
}
|
||||
}()
|
||||
rows, err := cookieDB.Query(queryChromiumCookie)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer func() {
|
||||
if err := rows.Close(); err != nil {
|
||||
log.Debug(err)
|
||||
@@ -308,6 +311,9 @@ func (h *historyData) ChromeParse(key []byte) error {
|
||||
}
|
||||
}()
|
||||
rows, err := historyDB.Query(queryChromiumHistory)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer func() {
|
||||
if err := rows.Close(); err != nil {
|
||||
log.Debug(err)
|
||||
|
||||
Reference in New Issue
Block a user