mirror of
https://github.com/moonD4rk/HackBrowserData
synced 2025-01-19 12:50:50 +00:00
docs: update readme
This commit is contained in:
parent
0a904b93de
commit
a258c3e65a
@ -13,7 +13,7 @@ hack-browser-data is an open-source tool that could help you export data from br
|
||||
| Edge [MacOS]<br />(require password) | ✅ | ✅ | ✅ | ✅ |
|
||||
| 360 Speed Browser [Windows] | ✅ | ✅ | ✅ | ✅ |
|
||||
| QQ Browser [Windows] | ✅ | ✅ | ✅ | ✅ |
|
||||
| FireFox [MacOS] | ✅ | ✅ | ✅ | ✅ |
|
||||
| FireFox [MacOS] | ✅ | ❌ | ❌ | ❌ |
|
||||
| FireFox [Windows] | ❌ | ❌ | ❌ | ❌ |
|
||||
| Safari [MacOS] | ❌ | ❌ | ❌ | ❌ |
|
||||
| Internet Explorer [Windows] | ❌ | ❌ | ❌ | ❌ |
|
||||
|
@ -149,3 +149,15 @@ func MakeDir(dirName string) {
|
||||
err = os.Mkdir(dirName, 0700)
|
||||
}
|
||||
}
|
||||
|
||||
func paddingZero(s []byte, l int) []byte {
|
||||
h := l - len(s)
|
||||
if h <= 0 {
|
||||
return s
|
||||
} else {
|
||||
for i := len(s); i < l; i++ {
|
||||
s = append(s, 0)
|
||||
}
|
||||
return s
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user