Possible secret key complexity bug #317
Unanswered
s0alqasim1d
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I don't know if you consider this a bug or not. I did notice that the key requirements are alphanumeric characters, but I wanted to try a more complex key. So I tried using a
$
at the start of the key and that caused failure stating no key was provided.I could see the command for a second then it disappears, it seemed indeed that the command had no key provided. Knowing that Unix shell may interpret a string starting with
$
as an environment variable I tried wrapping the key in single quotes which worked. The output then displayed my key enclosed in single quotes when it substituted into the command.tldr;
If the key is
$secretkey123
, Patching doesn't work. When wrapping in single quotes like:'$secretkey123'
, patching proceeds successfully.Beta Was this translation helpful? Give feedback.
All reactions