cm0002@lemmy.world to Linux@programming.dev · 1 day agoMalicious Go Modules Deliver Disk-Wiping Linux Malware in Advanced Supply Chain Attackthehackernews.comexternal-linkmessage-square5fedilinkarrow-up140arrow-down10file-textcross-posted to: [email protected]
arrow-up140arrow-down1external-linkMalicious Go Modules Deliver Disk-Wiping Linux Malware in Advanced Supply Chain Attackthehackernews.comcm0002@lemmy.world to Linux@programming.dev · 1 day agomessage-square5fedilinkfile-textcross-posted to: [email protected]
Packages: github.com/truthfulpharm/prototransform github.com/blankloggia/go-mcp github.com/steelpoor/tlsproxy
minus-squareOnno (VK6FLAB)@lemmy.radiolinkfedilinkarrow-up1·1 day agoThere’s a reason why there’s only privileged write access to /dev/sda. If you run unknown software as root on any computer you get to experience first hand the impact of: “fuck around and find out”.
minus-squareDumhuvud@programming.devlinkfedilinkEnglisharrow-up1·edit-22 hours agoI mean, you can destroy users’ data by doing the equivalent of: find "$HOME" -type f -delete No idea why they decided to write to /dev/* directly.
There’s a reason why there’s only privileged write access to /dev/sda.
If you run unknown software as root on any computer you get to experience first hand the impact of: “fuck around and find out”.
I mean, you can destroy users’ data by doing the equivalent of:
find "$HOME" -type f -delete
No idea why they decided to write to
/dev/*
directly.