Remix.run Logo
BoredPositron 6 hours ago

It's the third time that I've read something about availability notifications on discord and other chats getting abused for timed attacks in the last few weeks.

magicalhippo 5 hours ago | parent | next [-]

After my Wordpress site got hacked way back through an exploit in one of the WP files, I set up a cron job that compared the hash of the static files with expected hash, and would fire off an email if they differed.

The script lived above the web root, so they'd have to escape that to tamper with it, and was generated by another script.

Saved me a couple of times since, well worth the 15 minutes I spent on setting it up.

michaelt 3 hours ago | parent | next [-]

Back in the 1990s, there was a tool called ‘tripwire’ that checked key files against expected checksums.

As I recall, they recommended putting the expected values on a floppy disk and setting the ‘write protect’ tab, so the checksums couldn’t be changed.

FuriouslyAdrift 3 hours ago | parent | next [-]

tripwire was the orginal file integrity anti-virus/anti-tampering software from the security group (which turned into CERIAS) at Purdue led by Dr. Eugene "Spaff" Spafford.

https://docs.lib.purdue.edu/cstech/1084/

Terr_ 3 hours ago | parent | prev [-]

Back in the 90s I fantasized about a hard drive bay with a physical write-protect switch on the cover plate.

kqgnkqgn 3 hours ago | parent | next [-]

In the mid-2000's I briefly worked for a company that did this at a firmware level ("write-blocked firmware") for USB drive adapters (IDE / SATA / whatever IDE variant laptops were using / etc). This was apparently very valuable for police and investigative services, so they could collect evidence, while being able to show that they did not tamper with the original drive.

kjs3 2 hours ago | parent | prev [-]

Tenable makes some "read only" adapters for hard disks (SATA, PATA, SCSI & FW at least). They're usually sold as part of a forensic analysis kit. I have a couple and they definitely work. I believe there are a couple of other vendors (Wiebetech?) make similar devices.

The alternative (tho not practical in many cases) would be RO media like RW-DVD.

daneel_w 3 hours ago | parent | prev | next [-]

Related: OpenBSD does this daily as part of running security(8) and its coverage can be expanded to include pretty much anything.

https://man.openbsd.org/security

embedding-shape 4 hours ago | parent | prev [-]

> Saved me a couple of times since

Wait, how often does your Wordpress site get successfully hacked like that?

Beretta_Vexee 3 hours ago | parent | next [-]

It depends on how long you've been using WordPress, whether you use plugins, whether they're well-maintained or not, and so on.

Back around 2010, there were security vulnerabilities in WordPress or its popular plugins almost every month.

magicalhippo 4 hours ago | parent | prev [-]

Keep in mind the first time was about 20 years ago.

One time the hosting provider got compromised, FTP server exploit IIRC, they ran a recursive search and replace from root directory of the server.

Aurornis an hour ago | parent | prev [-]

Can you share what those other attacks were? It's helpful to study additional attacks to know what to look for.