@[email protected] to [email protected] • 8 months agoA Linux user's nightmare: the machine was wiped clean with one clickwww.mikrobitti.fiexternal-linkmessage-square47fedilinkarrow-up11arrow-down11file-textcross-posted to: [email protected]
arrow-up10arrow-down1external-linkA Linux user's nightmare: the machine was wiped clean with one clickwww.mikrobitti.fi@[email protected] to [email protected] • 8 months agomessage-square47fedilinkfile-textcross-posted to: [email protected]
minus-square@[email protected]linkfedilink0•edit-28 months agoThe command was rm -rf $pathvariable Bug in the code caused the path to be root. Wasn’t explicitly malicious
minus-squareDandroidlinkfedilink0•8 months agoDon’t most distros have safeguards against this? I tried sudo rm -rf / in an Ubuntu VM that I was about to delete just to see what happened, and it gave me a warning. I had to add some other option to bypass the warning.
minus-squareEager EaglelinkfedilinkEnglish0•8 months agoit apparently was defaulting to the home dir, not /
The command was rm -rf $pathvariable
Bug in the code caused the path to be root. Wasn’t explicitly malicious
Don’t most distros have safeguards against this? I tried
sudo rm -rf /
in an Ubuntu VM that I was about to delete just to see what happened, and it gave me a warning. I had to add some other option to bypass the warning.Yes,
rm -rf --allow-unsafe
Or something is required
--no-preserve-root
it apparently was defaulting to the home dir, not
/