feat: add CountEntries to skip decryption for list --detail (#562)

* feat: add CountEntries to skip decryption for list --detail (#549)
* test: add CountEntries and countCategory tests at browser level
* fix: address review feedback on CountRows and countLocalStorage
* test: add CountRows unit tests
This commit is contained in:
Roger
2026-04-07 22:28:39 +08:00
committed by GitHub
parent 5f42d4fe5f
commit b3bbc0dadf
40 changed files with 1009 additions and 101 deletions
+8 -1
View File
@@ -9,7 +9,10 @@ import (
"github.com/moond4rk/hackbrowserdata/utils/sqliteutil"
)
const firefoxLocalStorageQuery = `SELECT originKey, key, value FROM webappsstore2`
const (
firefoxLocalStorageQuery = `SELECT originKey, key, value FROM webappsstore2`
firefoxCountLocalStorageQuery = `SELECT COUNT(*) FROM webappsstore2`
)
func extractLocalStorage(path string) ([]types.StorageEntry, error) {
return sqliteutil.QueryRows(path, true, firefoxLocalStorageQuery,
@@ -26,6 +29,10 @@ func extractLocalStorage(path string) ([]types.StorageEntry, error) {
})
}
func countLocalStorage(path string) (int, error) {
return sqliteutil.CountRows(path, true, firefoxCountLocalStorageQuery)
}
func reverseString(s string) string {
b := []byte(s)
for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {