mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2026-02-03 14:13:26 +00:00
Add an option to password protect a file #104
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @CodeCubeNeo on GitHub.
I think it would be awesome if we could restrict unknown users from even downloading a file (not just encryption). I think the easiest way is that if the uploader wants, he can set a password, and if the downloader wants to have that file, he should enter that password.
@CodeCubeNeo commented on GitHub:
So 20 lenght is default for transfer.sh?
@CodeCubeNeo commented on GitHub:
I guess yes, but you can guess that (although nearly impossible). You can close this and thanks for taking the time to answer my question ;).
@toastie89 commented on GitHub:
The 'password' is part of the URL in form of the random key, isn't it?
@paolafrancesca commented on GitHub:
@CodeCubeNeo
it's one of the example on the frontend:
@toastie89 commented on GitHub:
For me the 6 characters also feel a bit short. I run an own instance of transfer.sh and set
random-token-lengthto 20.@toastie89 commented on GitHub:
No, this is what I've set for my own installation. The default is 6.
@paolafrancesca commented on GitHub:
fixed in #162 162
@CodeCubeNeo commented on GitHub:
maybe change deafult to 10 or more? Just an idea.
@CodeCubeNeo commented on GitHub:
Great. always better to change security for the better over 4 characters (possible combos rise from 36^6 to 36^10 (36 is the number of possible characters only alphanumeric) which is quite a lot). Math is probably not right, but I still threw it there.
@paolafrancesca commented on GitHub:
I will do