Decrypt Files Offline

What is the problem you are having with rclone?

I downloader without no_data_encryption = true from dropbox and now I have some files, crypted. But name of the file is not crypted, but I can't open these files. And I remember that without in the .conf this no_data_encryption = true, file swas not readable.

Run the command 'rclone version' and share the full output of the command.

v1.68.1

Which cloud storage system are you using? (eg Google Drive)

Was dropbox, but I downloader some months ago, in local.

I know my pass, but I tried to mount the local folder with 13 option in Rclone, with my password, but I can't see my file in the folder. Strange.

The command you were trying to run (eg rclone copy /tmp remote:tmp)

I used:
rclone move

my .conf when i downloaded my files from dropbox

[droplocale]
type = dropbox
client_id = p6o3htlb48ga4sj
client_secret = 1560fpnw8txouon
chunk_size = 128Mi
token = {"access_token":"mytoken","token_type":"bearer","refresh_token":"token2","expiry":"2024-06-06T04:08:02.581804571Z"}

[droplocalec]
type = crypt
remote = droplocale:/MyFiles
password = mypass
server_side_across_configs = true

In this conf, miss

no_data_encryption = true

My .conf now that i tried to decrypt my files:

[TEST]
type = crypt
remote = C:\Users\bobta\Desktop\TEST
password = mypass

that is the correct idea. should work.

post the full output of that comand.

PS D:\AUTORCLONI\RCLONE - DROPBOX> .\rclone.exe ls TEST: -vv
2024/10/23 23:34:33 DEBUG : rclone: Version "v1.67.0" starting with parameters ["D:\AUTORCLONI\RCLONE - DROPBOX\rclone.exe" "ls" "TEST:" "-vv"]
2024/10/23 23:34:33 DEBUG : Creating backend with remote "TEST:"
2024/10/23 23:34:33 DEBUG : Using config file from "D:\AUTORCLONI\RCLONE - DROPBOX\rclone.conf"
2024/10/23 23:34:33 DEBUG : Creating backend with remote "C:\Users\bobta\Desktop\TEST"
2024/10/23 23:34:33 DEBUG : fs cache: renaming cache item "C:\Users\bobta\Desktop\TEST" to be canonical "//?/C:/Users/bobta/Desktop/TEST"
2024/10/23 23:34:33 NOTICE: myfile.mkv: Skipping undecryptable file name: not an encrypted file - does not match suffix
2024/10/23 23:34:33 DEBUG : 2 go routines active

I don't know if is important when i triead to create the new remote to decrypt, because i don't remeber these answers:

Press Enter for the default (standard).
/ Encrypt the filenames.
1 | See the docs for the details.
\ (standard)
2 / Very simple filename obfuscation.
\ (obfuscate)
/ Don't encrypt the file names.
3 | Adds a ".bin", or "suffix" extension only.
\ (off)

and

Option directory_name_encryption.
Option to either encrypt directory names or leave them intact.
NB If filename_encryption is "off" then this option will do nothing.
Choose a number from below, or type in your own boolean value (true or false).
Press Enter for the default (true).
1 / Encrypt directory names.
\ (true)
2 / Don't encrypt directory names, leave them intact.
\ (false)

can you post the output of rclone ls c:\users\bobta\desktop\test -vv

PS D:\AUTORCLONI\RCLONE - DROPBOX> .\rclone.exe ls c:\users\bobta\desktop\test -vv
2024/10/23 23:52:27 DEBUG : rclone: Version "v1.67.0" starting with parameters ["D:\AUTORCLONI\RCLONE - DROPBOX\rclone.exe" "ls" "c:\users\bobta\desktop\test" "-vv"]
2024/10/23 23:52:27 DEBUG : Creating backend with remote "c:\users\bobta\desktop\test"
2024/10/23 23:52:27 DEBUG : Using config file from "D:\AUTORCLONI\RCLONE - DROPBOX\rclone.conf"
2024/10/23 23:52:27 DEBUG : fs cache: renaming cache item "c:\users\bobta\desktop\test" to be canonical "//?/c:/users/bobta/desktop/test"
5703285687 myfile.mkv
2024/10/23 23:52:27 DEBUG : 2 go routines active

maybe, try adding the following to the remote config
suffix = none

try adding filename_encryption = off to the remote config

Works! amazing.

here my .conf to help someone that can read this thread:

[TEST]
type = crypt
remote = C:\Users\Desktop\TEST
filename_encryption = off
password = yourpass
suffix = none
1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.