Can someone explain how this “Shellshock” code wor

2019-02-28 08:47发布

This question already has an answer here:

I read in the news that Shellshock is another bigger vulnerability after Heartbleed. The code to test if our Bash shell is vulnerable or not is:

env X="() { :;} ; echo shellshock" /bin/sh -c "echo completed"

In detail, how does this code exactly work? What does the code env X="() { :;} ; do?

How is it vulnerable and can it be exploited if I am hosting a website in a Linux environment where the shell is vulnerable?

1条回答
Anthone
2楼-- · 2019-02-28 09:20

env x='() { :;}; echo vulnerable' bash -c "echo this is a test"

What does env do?

From the documentation, env runs programs in a modified environment.

env [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]

It is clear that x is a name/variable and () { :;}; echo vulnerable' is the value for the variable.

Now, what is () { :;};?

When a function is exported, Bash stores its defenition as a value in the environment variable:

$ x() {echo hello world;}
$ export x
$ env | grep x
x=() {echo hello world};

Now, when x='() {:;}' means similar as writing

$ x() {:;}
$ export x
$ env | grep x

That is, we indirectly made export x onto the new environmnet created by the env. Here : is a null statement in Bash.

查看更多
登录 后发表回答