Posts tagged Heartbleed
How to check if Bash is vulnerable to Heartbleed
Run this line in your Bash console:
env x='() { :;}; echo vulnerable' bash -c "only this line should appear"
If you see this, your Bash is vulnerable to Heartbleed:
vulnerable
only this line should appear
If you see this, your Bash is secure from Heartbleed:
only this line should appear