Created
August 31, 2020 12:16
-
-
Save Freekers/9e88287491813b3d170951d65799cb94 to your computer and use it in GitHub Desktop.
rclone hash to password decryptor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// rclone hash to password decryptor - quick and dirty by Freekers | |
// will decrypt password based on hash in rclone config, in case you lost the password but still have the hash or config | |
// 1. install golang from here: https://golang.org/dl/ | |
// 2. Open a cmd and run: go get github.com/rclone/rclone/fs/config/obscure | |
// 3. replace 'YOUR_HASH_HERE' with your hash and save the file | |
// 4. In cmd, run: go run mustreveal.go | |
// 5. The password is displayed. | |
package main | |
import ( | |
"fmt" | |
"github.com/rclone/rclone/fs/config/obscure" | |
) | |
func main() { | |
fmt.Println(obscure.MustReveal("YOUR_HASH_HERE")) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment