-
Notifications
You must be signed in to change notification settings - Fork 133
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
Security risk (?): Backticks in descriptions are attempted to eval! #91
Comments
Could the problem be here? gradle-completion/gradle-completion.bash Lines 204 to 208 in 5c863bf
IIUC that filters text like
by prefix. Since it does $( grep ... ) instead of "$( grep ... )" expansion may evaluate shell meta-characters. |
My bash is kind of weak right now though. |
Ahhh I see these things in my prompt for month now and I finally figured out this.
It comes from the following tasks descriptions
and
|
We had a description defined like this with backticks:
Then in bash, I did
and saw:
Seems like this could be some attack vector, where a description could contain some malicious bash command.
The text was updated successfully, but these errors were encountered: