-1

We have over 10000 servers to patch for bash vulnerability (shellshock) bug. Now my question is what is the command to patch this bug ? And how we can check whether the patch has been installed and the bug has been fixed ?

Srv
  • 13

1 Answers1

1

You need first to upgrade bash with up2date bash command on each servers, then execute this script to test if all is OK. But if the upgrade is a success, I'm not sure testing is needed. doc up2date

  • whether 'rpm -Uvh (new_bash_rpm_package name)' command will patch the vulnerable bash file ? – Srv Nov 13 '14 at 16:08
  • Yes, it's another possibility – Gilles Quénot Nov 13 '14 at 16:10
  • +1. Because it should have at least 1! Your answer is completely correct whether it's a duplicate or not. You're also right that he/she shouldn't feel the need to have to test. Unless they're doing some strange experiment it's not really necessary. Of course terminating all the running bash processes would possibly be required (depending on if it was a shared library or not that was updated) but that should be all that's necessary. – Pryftan Jan 28 '18 at 02:39