-
I'm trying to run
I tried doing what the PIA Port Forwarding Update script does, but the issue is that
Is there any way I can log into |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
I can't see why password is hashed... May be there something I didn't see. but the point is docker-transmission-openvpn/openvpn/start.sh Lines 221 to 227 in 42eb2ee |
Beta Was this translation helpful? Give feedback.
-
@IBNobody , https://github.com/transmission/transmission/blob/main/docs/rpc-spec.md#233-authentication shows how to use hashed password.
I'm afraid the project does not handle the hashed password at the moment. A pull request could add a feature like: |
Beta Was this translation helpful? Give feedback.
-
The answer is: You cannot use hashed/salted passwords to access I can't have my cake and eat it too. From the Transmission Docs...
This is what is happening. When I first created the container, I set my Subsequent container rebuilds ( Because the password is now salted, I cannot use the salted password in lieu of a real password when trying to access the transmission-remote. That would be dumb, because ANYONE with the salted password could log into my transmission-remote just like they could if they had the original password. This container does support a docker secret, specifically named docker-transmission-openvpn/docs/faq.md Line 39 in fad0ad1 However, this is not a true solution. Besides the fact that I don't have my docker set up as a swarm, which is needed for docker secrets, this secret method is not secure in and of itself. docker-transmission-openvpn/openvpn/start.sh Lines 221 to 224 in fad0ad1 I could exfiltrate the secret here by just looking at the env variables running in the container. It's harder than, say, passing them in as |
Beta Was this translation helpful? Give feedback.
The answer is: You cannot use hashed/salted passwords to access
transmission-remote
.I can't have my cake and eat it too.
From the Transmission Docs...
This is what is happening.
When I first created the container, I set my
rpc-password
to something. Transmission-daemon took that, salted it, prepended it with a{
, and stuc…