Check your Bash version$ bash --versionGNU bash, version 3.2.51(1)-release (x86_64-apple-darwin13)Copyright (C) 2007 Free Software Foundation, Inc.Run this following commend on your terminal to find whether your system is vulnerableenv x='() { :;}; echo vulnerable' bash -c "echo this is a test"If your system infected by Shellshock you will see the following result.vulnerablethis is a testWhat is the good result? You ...
↧