• 1 Post
  • 54 Comments
Joined 6 months ago
cake
Cake day: October 17th, 2025

help-circle
  • This is the meat of the headline:

    For example, the Anthropic-claimed 181 Firefox exploits ran with the browser sandbox turned off and the FreeBSD exploit transcript “shows substantial human guidance, not autonomy.”

    Additionally, the “‘thousands of severe vulnerabilities’ extrapolates from 198 manually reviewed reports. The Linux kernel bug was found by Opus 4.6, the public model, not Mythos,” Devansh said.

    Another researcher, Davi Ottenheimer, pointed out that the security section (Section 3, pages 47-53) of Anthropic’s 244-page documentation “contains no count of zero-days at all. With no CVE list, no CVSS distribution, no severity bucket, no disclosure timeline, no vendor-confirmed-novel table, no false-positive rate.”

    Ottenheimer likens it to “the ending of the Wizard of Oz, a sorry disappointment about a model weaponizing two bugs that a different model found, in software the vendor had already patched, in a test environment with the browser sandbox and defense-in-depth mitigations stripped out.”








  • For restic:

    1. Every backup is incremental after the first or rather restic makes no distinction because it chunks and dedups the data on the way in so if it’s already in the repo it doesn’t get stored twice.
    2. Restic has customisable ‘forget’ cmd that can do whatever you want
    3. Restic has filtering flags, you can use a gitignore style file also. Many people use a wrapper though like autorestic.
    4. The ghost files are interesting. Restic has nothing special for this. A script that mirrored those files and wrote them all as 0 bytes which restic could then backup would be possible, this would work same for any backup tool.
    5. You get that summary after every restic backup. You can also compare snapshots and mount them all to run your own analysis if you want.
    6. Again if you mount a restic backup you have access to every file and snapshot taken in the repo. You could compare or diff them using usual tools.
    7. There is a ‘exclude-if-present’ option where you can say if a file with the name of your choosing is present do not backup that dir etc