Blog
Google Chrome: CVE-2024-7534 and CVE-2024-7535
We are excited to announce the discovery and reporting of two critical vulnerabilities in the Google Chrome browser that impact the JavaScript engine “V8” and the rendering engine “Blink.” The assigned CVE identifiers are CVE-2024-7534 and CVE-2024-7535. These vulnerabilities[...]
Fuzzing Series II: Precise Code Coverage
Code Coverage is a technique used to obtain information about which internal code of a binary is being executed when it is running. In Fuzz Testing, we can receive this feedback from the Target on each execution, allowing us[...]
Fuzzing Series I: The Executor
The Executor is the component of a fuzzer responsible for running the test file (Testcase) in the software being tested (Target). The ideal objective when designing an Executor is to execute Testcases as quickly and efficiently as possible, without[...]