mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
support all versions of firefox, Close #73
This commit is contained in:
+15
-11
@@ -12,17 +12,21 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
chromeName = "Chrome"
|
||||
chromeBetaName = "Chrome Beta"
|
||||
chromiumName = "Chromium"
|
||||
edgeName = "Microsoft Edge"
|
||||
firefoxName = "Firefox"
|
||||
speed360Name = "360speed"
|
||||
qqBrowserName = "qq"
|
||||
braveName = "Brave"
|
||||
operaName = "Opera"
|
||||
operaGXName = "OperaGX"
|
||||
vivaldiName = "Vivaldi"
|
||||
chromeName = "Chrome"
|
||||
chromeBetaName = "Chrome Beta"
|
||||
chromiumName = "Chromium"
|
||||
edgeName = "Microsoft Edge"
|
||||
firefoxName = "Firefox"
|
||||
firefoxBetaName = "Firefox Beta"
|
||||
firefoxDevName = "Firefox Dev"
|
||||
firefoxNightlyName = "Firefox Nightly"
|
||||
firefoxESRName = "Firefox ESR"
|
||||
speed360Name = "360speed"
|
||||
qqBrowserName = "qq"
|
||||
braveName = "Brave"
|
||||
operaName = "Opera"
|
||||
operaGXName = "OperaGX"
|
||||
vivaldiName = "Vivaldi"
|
||||
)
|
||||
|
||||
type Browser interface {
|
||||
|
||||
+33
-9
@@ -10,15 +10,19 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
chromeProfilePath = "/Users/*/Library/Application Support/Google/Chrome/*/"
|
||||
chromeBetaProfilePath = "/Users/*/Library/Application Support/Google/Chrome Beta/*/"
|
||||
chromiumProfilePath = "/Users/*/Library/Application Support/Chromium/*/"
|
||||
edgeProfilePath = "/Users/*/Library/Application Support/Microsoft Edge/*/"
|
||||
fireFoxProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default*/"
|
||||
braveProfilePath = "/Users/*/Library/Application Support/BraveSoftware/Brave-Browser/*/"
|
||||
operaProfilePath = "/Users/*/Library/Application Support/com.operasoftware.Opera/"
|
||||
operaGXProfilePath = "/Users/*/Library/Application Support/com.operasoftware.OperaGX/"
|
||||
vivaldiProfilePath = "/Users/*/Library/Application Support/Vivaldi/*/"
|
||||
fireFoxProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default-release/"
|
||||
fireFoxBetaProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default-beta/"
|
||||
fireFoxDevProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.dev-edition-default/"
|
||||
fireFoxNightlyProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default-nightly/"
|
||||
fireFoxESRProfilePath = "/Users/*/Library/Application Support/Firefox/Profiles/*.default-esr/"
|
||||
chromeProfilePath = "/Users/*/Library/Application Support/Google/Chrome/*/"
|
||||
chromeBetaProfilePath = "/Users/*/Library/Application Support/Google/Chrome Beta/*/"
|
||||
chromiumProfilePath = "/Users/*/Library/Application Support/Chromium/*/"
|
||||
edgeProfilePath = "/Users/*/Library/Application Support/Microsoft Edge/*/"
|
||||
braveProfilePath = "/Users/*/Library/Application Support/BraveSoftware/Brave-Browser/*/"
|
||||
operaProfilePath = "/Users/*/Library/Application Support/com.operasoftware.Opera/"
|
||||
operaGXProfilePath = "/Users/*/Library/Application Support/com.operasoftware.OperaGX/"
|
||||
vivaldiProfilePath = "/Users/*/Library/Application Support/Vivaldi/*/"
|
||||
)
|
||||
|
||||
const (
|
||||
@@ -44,6 +48,26 @@ var (
|
||||
Name: firefoxName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"firefox-beta": {
|
||||
ProfilePath: fireFoxBetaProfilePath,
|
||||
Name: firefoxBetaName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"firefox-dev": {
|
||||
ProfilePath: fireFoxDevProfilePath,
|
||||
Name: firefoxDevName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"firefox-nightly": {
|
||||
ProfilePath: fireFoxNightlyProfilePath,
|
||||
Name: firefoxNightlyName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"firefox-esr": {
|
||||
ProfilePath: fireFoxESRProfilePath,
|
||||
Name: firefoxESRName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"chrome": {
|
||||
ProfilePath: chromeProfilePath,
|
||||
Name: chromeName,
|
||||
|
||||
+32
-8
@@ -11,14 +11,18 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
fireFoxProfilePath = "/home/*/.mozilla/firefox/*.default*/"
|
||||
chromeProfilePath = "/home/*/.config/google-chrome/*/"
|
||||
chromiumProfilePath = "/home/*/.config/chromium/*/"
|
||||
edgeProfilePath = "/home/*/.config/microsoft-edge*/*/"
|
||||
braveProfilePath = "/home/*/.config/BraveSoftware/Brave-Browser/*/"
|
||||
chromeBetaProfilePath = "/home/*/.config/google-chrome-beta/*/"
|
||||
operaProfilePath = "/home/*/.config/opera/"
|
||||
vivaldiProfilePath = "/home/*/.config/vivaldi/*/"
|
||||
fireFoxProfilePath = "/home/*/.mozilla/firefox/*.default-release/"
|
||||
fireFoxBetaProfilePath = "/home/*/.mozilla/firefox/*.default-beta/"
|
||||
fireFoxDevProfilePath = "/home/*/.mozilla/firefox/*.dev-edition-default/"
|
||||
fireFoxNightlyProfilePath = "/home/*/.mozilla/firefox/*.default-nightly/"
|
||||
fireFoxESRProfilePath = "/home/*/.mozilla/firefox/*.default-esr/"
|
||||
chromeProfilePath = "/home/*/.config/google-chrome/*/"
|
||||
chromiumProfilePath = "/home/*/.config/chromium/*/"
|
||||
edgeProfilePath = "/home/*/.config/microsoft-edge*/*/"
|
||||
braveProfilePath = "/home/*/.config/BraveSoftware/Brave-Browser/*/"
|
||||
chromeBetaProfilePath = "/home/*/.config/google-chrome-beta/*/"
|
||||
operaProfilePath = "/home/*/.config/opera/"
|
||||
vivaldiProfilePath = "/home/*/.config/vivaldi/*/"
|
||||
)
|
||||
|
||||
const (
|
||||
@@ -44,6 +48,26 @@ var (
|
||||
Name: firefoxName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"firefox-beta": {
|
||||
ProfilePath: fireFoxBetaProfilePath,
|
||||
Name: firefoxBetaName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"firefox-dev": {
|
||||
ProfilePath: fireFoxDevProfilePath,
|
||||
Name: firefoxDevName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"firefox-nightly": {
|
||||
ProfilePath: fireFoxNightlyProfilePath,
|
||||
Name: firefoxNightlyName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"firefox-esr": {
|
||||
ProfilePath: fireFoxESRProfilePath,
|
||||
Name: firefoxESRName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"chrome": {
|
||||
ProfilePath: chromeProfilePath,
|
||||
Name: chromeName,
|
||||
|
||||
+48
-24
@@ -13,25 +13,29 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
chromeProfilePath = "/AppData/Local/Google/Chrome/User Data/*/"
|
||||
chromeKeyPath = "/AppData/Local/Google/Chrome/User Data/Local State"
|
||||
chromeBetaProfilePath = "/AppData/Local/Google/Chrome Beta/User Data/*/"
|
||||
chromeBetaKeyPath = "/AppData/Local/Google/Chrome Beta/User Data/Local State"
|
||||
chromiumProfilePath = "/AppData/Local/Chromium/User Data/*/"
|
||||
chromiumKeyPath = "/AppData/Local/Chromium/User Data/Local State"
|
||||
edgeProfilePath = "/AppData/Local/Microsoft/Edge/User Data/*/"
|
||||
edgeKeyPath = "/AppData/Local/Microsoft/Edge/User Data/Local State"
|
||||
braveProfilePath = "/AppData/Local/BraveSoftware/Brave-Browser/User Data/*/"
|
||||
braveKeyPath = "/AppData/Local/BraveSoftware/Brave-Browser/User Data/Local State"
|
||||
speed360ProfilePath = "/AppData/Local/360chrome/Chrome/User Data/*/"
|
||||
qqBrowserProfilePath = "/AppData/Local/Tencent/QQBrowser/User Data/*/"
|
||||
firefoxProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default*/"
|
||||
operaProfilePath = "/AppData/Roaming/Opera Software/Opera Stable/"
|
||||
operaKeyPath = "/AppData/Roaming/Opera Software/Opera Stable/Local State"
|
||||
operaGXProfilePath = "/AppData/Roaming/Opera Software/Opera GX Stable/"
|
||||
operaGXKeyPath = "/AppData/Roaming/Opera Software/Opera GX Stable/Local State"
|
||||
vivaldiProfilePath = "/AppData/Local/Vivaldi/User Data/Default/"
|
||||
vivaldiKeyPath = "/AppData/Local/Vivaldi/Local State"
|
||||
firefoxProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-release/"
|
||||
fireFoxBetaProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-beta/"
|
||||
fireFoxDevProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.dev-edition-default/"
|
||||
fireFoxNightlyProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-nightly/"
|
||||
fireFoxESRProfilePath = "/AppData/Roaming/Mozilla/Firefox/Profiles/*.default-esr/"
|
||||
chromeProfilePath = "/AppData/Local/Google/Chrome/User Data/*/"
|
||||
chromeKeyPath = "/AppData/Local/Google/Chrome/User Data/Local State"
|
||||
chromeBetaProfilePath = "/AppData/Local/Google/Chrome Beta/User Data/*/"
|
||||
chromeBetaKeyPath = "/AppData/Local/Google/Chrome Beta/User Data/Local State"
|
||||
chromiumProfilePath = "/AppData/Local/Chromium/User Data/*/"
|
||||
chromiumKeyPath = "/AppData/Local/Chromium/User Data/Local State"
|
||||
edgeProfilePath = "/AppData/Local/Microsoft/Edge/User Data/*/"
|
||||
edgeKeyPath = "/AppData/Local/Microsoft/Edge/User Data/Local State"
|
||||
braveProfilePath = "/AppData/Local/BraveSoftware/Brave-Browser/User Data/*/"
|
||||
braveKeyPath = "/AppData/Local/BraveSoftware/Brave-Browser/User Data/Local State"
|
||||
speed360ProfilePath = "/AppData/Local/360chrome/Chrome/User Data/*/"
|
||||
qqBrowserProfilePath = "/AppData/Local/Tencent/QQBrowser/User Data/*/"
|
||||
operaProfilePath = "/AppData/Roaming/Opera Software/Opera Stable/"
|
||||
operaKeyPath = "/AppData/Roaming/Opera Software/Opera Stable/Local State"
|
||||
operaGXProfilePath = "/AppData/Roaming/Opera Software/Opera GX Stable/"
|
||||
operaGXKeyPath = "/AppData/Roaming/Opera Software/Opera GX Stable/Local State"
|
||||
vivaldiProfilePath = "/AppData/Local/Vivaldi/User Data/Default/"
|
||||
vivaldiKeyPath = "/AppData/Local/Vivaldi/Local State"
|
||||
)
|
||||
|
||||
var (
|
||||
@@ -42,6 +46,31 @@ var (
|
||||
Storage string
|
||||
New func(profile, key, name, storage string) (Browser, error)
|
||||
}{
|
||||
"firefox": {
|
||||
ProfilePath: os.Getenv("USERPROFILE") + firefoxProfilePath,
|
||||
Name: firefoxName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"firefox-beta": {
|
||||
ProfilePath: os.Getenv("USERPROFILE") + fireFoxBetaProfilePath,
|
||||
Name: firefoxBetaName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"firefox-dev": {
|
||||
ProfilePath: os.Getenv("USERPROFILE") + fireFoxDevProfilePath,
|
||||
Name: firefoxDevName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"firefox-nightly": {
|
||||
ProfilePath: os.Getenv("USERPROFILE") + fireFoxNightlyProfilePath,
|
||||
Name: firefoxNightlyName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"firefox-esr": {
|
||||
ProfilePath: os.Getenv("USERPROFILE") + fireFoxESRProfilePath,
|
||||
Name: firefoxESRName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"chrome": {
|
||||
ProfilePath: os.Getenv("USERPROFILE") + chromeProfilePath,
|
||||
KeyPath: os.Getenv("USERPROFILE") + chromeKeyPath,
|
||||
@@ -76,11 +105,6 @@ var (
|
||||
Name: qqBrowserName,
|
||||
New: NewChromium,
|
||||
},
|
||||
"firefox": {
|
||||
ProfilePath: os.Getenv("USERPROFILE") + firefoxProfilePath,
|
||||
Name: firefoxName,
|
||||
New: NewFirefox,
|
||||
},
|
||||
"brave": {
|
||||
ProfilePath: os.Getenv("USERPROFILE") + braveProfilePath,
|
||||
KeyPath: os.Getenv("USERPROFILE") + braveKeyPath,
|
||||
|
||||
@@ -217,9 +217,9 @@ type LoginPBE struct {
|
||||
|
||||
type LoginSequence struct {
|
||||
asn1.ObjectIdentifier
|
||||
Iv []byte
|
||||
IV []byte
|
||||
}
|
||||
|
||||
func (l LoginPBE) Decrypt(globalSalt, masterPwd []byte) (key []byte, err error) {
|
||||
return des3Decrypt(globalSalt, l.Iv, l.Encrypted)
|
||||
return des3Decrypt(globalSalt, l.IV, l.Encrypted)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user