cm0002@lemmy.world to Linux@programming.dev · 2 days agoMalicious Go Modules Deliver Disk-Wiping Linux Malware in Advanced Supply Chain Attackthehackernews.comexternal-linkmessage-square5fedilinkarrow-up144arrow-down10file-textcross-posted to: linux@lemmy.ml
arrow-up144arrow-down1external-linkMalicious Go Modules Deliver Disk-Wiping Linux Malware in Advanced Supply Chain Attackthehackernews.comcm0002@lemmy.world to Linux@programming.dev · 2 days agomessage-square5fedilinkfile-textcross-posted to: linux@lemmy.ml
Packages: github.com/truthfulpharm/prototransform github.com/blankloggia/go-mcp github.com/steelpoor/tlsproxy
minus-squareOnno (VK6FLAB)@lemmy.radiolinkfedilinkarrow-up2·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-up2·edit-29 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.