As my coworker succinctly put it, "nobody uses Firefox anymore." I don't know if hundreds of millions of people is exactly, "nobody" but I personally agree that open source software is just going to crush closed source for exactly the reasons we're seeing unfold in front of us; you can audit and correct incorrect behavior for the benefits of all.
For closed-source, I'd expect defenders to have a greater advantage because they can run Mythos on the source code, while attackers only get an opaque API/protocol to try messing with.
Mozilla Used Anthropic's Mythos to Find and Fix 271 Bugs in Firefox
11–19 of 19 posts
Re: Mozilla Used Anthropic's Mythos to Find and Fix 271 Bugs in Firefox
#12Re: Mozilla Used Anthropic's Mythos to Find and Fix 271 Bugs in Firefox
#13As my coworker succinctly put it, "nobody uses Firefox anymore." I don't know if hundreds of millions of people is exactly, "nobody" but I personally agree that open source software is just going to crush closed source for exactly the reasons we're seeing unfold in front of us; you can audit and correct incorrect behavior for the benefits of all.
Re: Mozilla Used Anthropic's Mythos to Find and Fix 271 Bugs in Firefox
#14What they did not say is how many of these vulnerabilities were addressed by LLM-created fixes, if any.
Re: Mozilla Used Anthropic's Mythos to Find and Fix 271 Bugs in Firefox
#15Re: Mozilla Used Anthropic's Mythos to Find and Fix 271 Bugs in Firefox
#16I wonder how many false positives there were. Typically this types of static analysis tools come up with a ton of potential bugs, but only a few of them are actual bugs.
Re: Mozilla Used Anthropic's Mythos to Find and Fix 271 Bugs in Firefox
#17I wonder how many false positives there were. Typically this types of static analysis tools come up with a ton of potential bugs, but only a few of them are actual bugs.
The basic technique (as has been publicly described by Anthropic) is you ask one agent to come up with a test case that triggers, say, an ASan use-after-free. Then you have a second agent that validates the test case. This eliminates a lot of false positives. It gets a little tricky when you allow the first agent to modify the code, which is necessary for things like sandbox escapes where you want to demonstrate that…
Everything up to finding and validating the bug is a huge win in vuln/exploit development, everything after validating the bug is a huge win for defensive security and a massive gap until the tools are generally available :S
Re: Mozilla Used Anthropic's Mythos to Find and Fix 271 Bugs in Firefox
#18As my coworker succinctly put it, "nobody uses Firefox anymore." I don't know if hundreds of millions of people is exactly, "nobody" but I personally agree that open source software is just going to crush closed source for exactly the reasons we're seeing unfold in front of us; you can audit and correct incorrect behavior for the benefits of all.
For closed-source, I'd expect defenders to have a greater advantage because they can run Mythos on the source code, while attackers only get an opaque API/protocol to try messing with.
For many attack scenarios the boundary is really if you can establish an effective canary or oracle for determining if a change in input results in a change in output, once you have that, it's simply a matter of scaling your testing or attack (for fuzzing, for blind injection, or any other number of attacks that depend on getting signal from a service).
Re: Mozilla Used Anthropic's Mythos to Find and Fix 271 Bugs in Firefox
#19The question is, if Firefox was given $20k worth of credit to find these vulnerabilities, how many vulnerabilities could have been discovered by paying that much money to security researchers who wouldn't have needed additional reviewers?