mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
feat: Support decryption of Firefox 144+ (AES-256-CBC) (#498)
* feat: Support decryption of Firefox 144+ (AES-256-CBC) * docs: Add Firefox 144+ support to README
This commit is contained in:
@@ -228,7 +228,11 @@ func getFirefoxLoginData() ([]loginData, error) {
|
||||
user []byte
|
||||
pass []byte
|
||||
)
|
||||
// Use formSubmitURL if available, otherwise fallback to hostname
|
||||
m.LoginURL = v.Get("formSubmitURL").String()
|
||||
if m.LoginURL == "" {
|
||||
m.LoginURL = v.Get("hostname").String()
|
||||
}
|
||||
user, err = base64.StdEncoding.DecodeString(v.Get("encryptedUsername").String())
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
||||
Reference in New Issue
Block a user