Hacker News new | ask | show | jobs
by Glan1984 4279 days ago
How about installing zsh and making that the default shell? Is that enough?
1 comments

zsh is also vulnerable. (it's a bash derivative)
Can you show example code exploiting zsh? I haven't seen such, nor found such:

  » V='() { :; }; echo busted' zsh -c "echo hi"
  hi
But:

  » V='() { :; }; echo busted' bash -c "echo hi"
  busted
  hi
That's incorrect; it does not appear to have the "export function" feature that this bug relies on.