Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unknown string being injected on read into value #4011

Closed
myoung34 opened this issue Feb 20, 2018 · 5 comments
Closed

Unknown string being injected on read into value #4011

myoung34 opened this issue Feb 20, 2018 · 5 comments

Comments

@myoung34
Copy link

myoung34 commented Feb 20, 2018

$ docker run -it --entrypoint /bin/sh vault:0.9.3                                                                                                                                                                                            
...snip me authing...
/ # unset SOMETHING
/ # vault write secret/test/wut value='%OH)9<'
Success! Data written to: secret/test/wut
/ # vault read -field=value secret/test/wut 
%OH)9<
/ # SOMETHING=$(vault read -field=value secret/test/wut)
/ # echo "what? '${SOMETHING}'"
what? '%!O(MISSING)H)9<'
$ docker run -it --entrypoint /bin/sh vault:0.8.1
...snip me authing...
/ # unset SOMETHING
/ # vault write secret/test/wut value='%OH)9<'
Success! Data written to: secret/test/wut
/ # vault read -field=value secret/test/wut
%OH)9<
/ # SOMETHING=$(vault read -field=value secret/test/wut)
/ # echo "what? '${SOMETHING}'"
what? '%OH)9<'```
@jefferai
Copy link
Member

Already fixed via #4005

@myoung34
Copy link
Author

@jefferai is it in a release already?

@jefferai
Copy link
Member

Soon.

@myoung34
Copy link
Author

@jefferai any reason this isnt listed in the 0.9.4 changelog?

@jefferai
Copy link
Member

Looks like it was forgotten

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants