You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
187 lines
4.6 KiB
187 lines
4.6 KiB
3 years ago
|
package browser
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"crypto/sha1"
|
||
|
"errors"
|
||
|
"os/exec"
|
||
|
|
||
|
"golang.org/x/crypto/pbkdf2"
|
||
|
)
|
||
|
|
||
|
var (
|
||
3 years ago
|
chromiumList = map[string]struct {
|
||
3 years ago
|
browserInfo *browserInfo
|
||
|
items []item
|
||
|
}{
|
||
|
"chrome": {
|
||
|
browserInfo: chromeInfo,
|
||
|
items: defaultChromiumItems,
|
||
3 years ago
|
},
|
||
|
"edge": {
|
||
|
browserInfo: edgeInfo,
|
||
|
items: defaultChromiumItems,
|
||
|
},
|
||
3 years ago
|
"chromium": {
|
||
|
browserInfo: chromiumInfo,
|
||
|
items: defaultChromiumItems,
|
||
|
},
|
||
|
"chrome-beta": {
|
||
|
browserInfo: chromeBetaInfo,
|
||
|
items: defaultChromiumItems,
|
||
|
},
|
||
|
"opera": {
|
||
|
browserInfo: operaInfo,
|
||
|
items: defaultChromiumItems,
|
||
|
},
|
||
|
"opera-gx": {
|
||
|
browserInfo: operaGXInfo,
|
||
|
items: defaultChromiumItems,
|
||
|
},
|
||
|
"vivaldi": {
|
||
|
browserInfo: vivaldiInfo,
|
||
|
items: defaultChromiumItems,
|
||
|
},
|
||
|
"coccoc": {
|
||
|
browserInfo: coccocInfo,
|
||
|
items: defaultChromiumItems,
|
||
|
},
|
||
|
"brave": {
|
||
|
browserInfo: braveInfo,
|
||
|
items: defaultChromiumItems,
|
||
|
},
|
||
|
"yandex": {
|
||
|
browserInfo: yandexInfo,
|
||
|
items: defaultYandexItems,
|
||
|
},
|
||
3 years ago
|
}
|
||
|
firefoxList = map[string]struct {
|
||
|
browserInfo *browserInfo
|
||
|
items []item
|
||
|
}{
|
||
|
"firefox": {
|
||
|
browserInfo: firefoxInfo,
|
||
|
items: defaultFirefoxItems,
|
||
3 years ago
|
},
|
||
|
}
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ErrWrongSecurityCommand = errors.New("macOS wrong security command")
|
||
|
)
|
||
|
|
||
|
func (c *chromium) GetMasterKey() ([]byte, error) {
|
||
|
var (
|
||
|
cmd *exec.Cmd
|
||
|
stdout, stderr bytes.Buffer
|
||
|
)
|
||
|
// $ security find-generic-password -wa 'Chrome'
|
||
3 years ago
|
cmd = exec.Command("security", "find-generic-password", "-wa", c.browserInfo.storage)
|
||
3 years ago
|
cmd.Stdout = &stdout
|
||
|
cmd.Stderr = &stderr
|
||
|
err := cmd.Run()
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if stderr.Len() > 0 {
|
||
|
return nil, errors.New(stderr.String())
|
||
|
}
|
||
|
temp := stdout.Bytes()
|
||
|
chromeSecret := temp[:len(temp)-1]
|
||
|
if chromeSecret == nil {
|
||
|
return nil, ErrWrongSecurityCommand
|
||
|
}
|
||
|
var chromeSalt = []byte("saltysalt")
|
||
|
// @https://source.chromium.org/chromium/chromium/src/+/master:components/os_crypt/os_crypt_mac.mm;l=157
|
||
|
key := pbkdf2.Key(chromeSecret, chromeSalt, 1003, 16, sha1.New)
|
||
3 years ago
|
if key != nil {
|
||
|
c.browserInfo.masterKey = key
|
||
|
return key, nil
|
||
3 years ago
|
}
|
||
3 years ago
|
return nil, errors.New("macOS wrong security command")
|
||
|
}
|
||
3 years ago
|
|
||
|
const (
|
||
|
chromeProfilePath = "/Library/Application Support/Google/Chrome/"
|
||
|
chromeBetaProfilePath = "/Library/Application Support/Google/Chrome Beta/"
|
||
|
chromiumProfilePath = "/Library/Application Support/Chromium/"
|
||
|
edgeProfilePath = "/Library/Application Support/Microsoft Edge/"
|
||
|
braveProfilePath = "/Library/Application Support/BraveSoftware/Brave-Browser/"
|
||
|
operaProfilePath = "/Library/Application Support/com.operasoftware.Opera/"
|
||
|
operaGXProfilePath = "/Library/Application Support/com.operasoftware.OperaGX/"
|
||
|
vivaldiProfilePath = "/Library/Application Support/Vivaldi/"
|
||
|
coccocProfilePath = "/Library/Application Support/Coccoc/"
|
||
|
yandexProfilePath = "/Library/Application Support/Yandex/YandexBrowser/"
|
||
|
|
||
3 years ago
|
firefoxProfilePath = "/Library/Application Support/Firefox/Profiles/"
|
||
3 years ago
|
)
|
||
3 years ago
|
|
||
3 years ago
|
const (
|
||
|
chromeStorageName = "Chrome"
|
||
|
chromeBetaStorageName = "Chrome"
|
||
|
chromiumStorageName = "Chromium"
|
||
|
edgeStorageName = "Microsoft Edge"
|
||
|
braveStorageName = "Brave"
|
||
|
operaStorageName = "Opera"
|
||
|
vivaldiStorageName = "Vivaldi"
|
||
|
coccocStorageName = "CocCoc"
|
||
|
yandexStorageName = "Yandex"
|
||
|
)
|
||
3 years ago
|
|
||
|
var (
|
||
|
chromeInfo = &browserInfo{
|
||
|
name: chromeName,
|
||
|
storage: chromeStorageName,
|
||
|
profilePath: chromeProfilePath,
|
||
|
}
|
||
|
chromiumInfo = &browserInfo{
|
||
|
name: chromiumName,
|
||
|
storage: chromiumStorageName,
|
||
|
profilePath: chromiumProfilePath,
|
||
|
}
|
||
|
chromeBetaInfo = &browserInfo{
|
||
|
name: chromeBetaName,
|
||
|
storage: chromeBetaStorageName,
|
||
|
profilePath: chromeBetaProfilePath,
|
||
|
}
|
||
|
operaInfo = &browserInfo{
|
||
|
name: operaName,
|
||
|
profilePath: operaProfilePath,
|
||
|
storage: operaStorageName,
|
||
|
}
|
||
|
operaGXInfo = &browserInfo{
|
||
|
name: operaGXName,
|
||
|
profilePath: operaGXProfilePath,
|
||
|
storage: operaStorageName,
|
||
|
}
|
||
|
edgeInfo = &browserInfo{
|
||
|
name: edgeName,
|
||
|
storage: edgeStorageName,
|
||
|
profilePath: edgeProfilePath,
|
||
|
}
|
||
|
braveInfo = &browserInfo{
|
||
|
name: braveName,
|
||
|
profilePath: braveProfilePath,
|
||
|
storage: braveStorageName,
|
||
|
}
|
||
|
vivaldiInfo = &browserInfo{
|
||
|
name: vivaldiName,
|
||
|
storage: vivaldiStorageName,
|
||
|
profilePath: vivaldiProfilePath,
|
||
|
}
|
||
|
coccocInfo = &browserInfo{
|
||
|
name: coccocName,
|
||
|
storage: coccocStorageName,
|
||
|
profilePath: coccocProfilePath,
|
||
|
}
|
||
|
yandexInfo = &browserInfo{
|
||
|
name: yandexName,
|
||
|
storage: yandexStorageName,
|
||
|
profilePath: yandexProfilePath,
|
||
|
}
|
||
|
firefoxInfo = &browserInfo{
|
||
|
name: firefoxName,
|
||
|
profilePath: firefoxProfilePath,
|
||
|
}
|
||
|
)
|