Lee Duna@lemmy.nz to Technology@lemmy.worldEnglish · 24 hours agoMicrosoft BitLocker-protected drives can now be opened with just some files on a USB stick — YellowKey zero-day exploit demonstrates an apparent backdoorwww.tomshardware.comexternal-linkmessage-square125linkfedilinkarrow-up1823arrow-down12file-text
arrow-up1821arrow-down1external-linkMicrosoft BitLocker-protected drives can now be opened with just some files on a USB stick — YellowKey zero-day exploit demonstrates an apparent backdoorwww.tomshardware.comLee Duna@lemmy.nz to Technology@lemmy.worldEnglish · 24 hours agomessage-square125linkfedilinkfile-text
minus-squareAlberat@lemmy.worldlinkfedilinkEnglisharrow-up22arrow-down1·15 hours agoi just deleted a month of notes by doing: find $(pwd) “*.tmp” -delete instead of: find $(pwd) -iname “*.tmp” -delete turns out the former throws an error on “*.tmp” but still deletes everything lol… PSA for everyone
minus-squareMatriks404@lemmy.worldlinkfedilinkEnglisharrow-up2·1 hour agoI think it’s your fault if you don’t have backups… but I legitimately think that we should restrict usage of classic Unix tools to scripts, and use safer tools ourselves… but I guess that’s just my opinion.
minus-squarepool_spray_098@lemmy.worldlinkfedilinkEnglisharrow-up1·5 hours agoDamn! That’s a brutal one. Someone should maybe change that behavior.
i just deleted a month of notes by doing:
find $(pwd) “*.tmp” -delete
instead of:
find $(pwd) -iname “*.tmp” -delete
turns out the former throws an error on “*.tmp” but still deletes everything lol… PSA for everyone
I think it’s your fault if you don’t have backups… but I legitimately think that we should restrict usage of classic Unix tools to scripts, and use safer tools ourselves… but I guess that’s just my opinion.
Damn! That’s a brutal one. Someone should maybe change that behavior.