jwt-rs / jwt-ui

A command line UI for decoding/encoding JSON Web Tokens
https://jwtui.cli.rs
MIT License
171 stars 11 forks source link

Update cd.yml #74

Open chawdamrunal opened 4 days ago

chawdamrunal commented 4 days ago

Using variable interpolation ${{...}} with github context data in a run: step could allow an attacker to inject their own code into the runner. This would allow them to steal secrets and code. github context data can have arbitrary user input and should be treated as untrusted. Instead, use an intermediate environment variable with env: to store the data and use the environment variable in the run: script. Be sure to use double-quotes the environment variable, like this: "$ENVVAR".