From 8e3cfb60ee4c8c2c7dc0ec55f85bb73b5e2fc099 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20Gro=C3=9F?= Date: Thu, 7 Nov 2024 19:38:08 +0100 Subject: [PATCH] Add --expose-externalize-string to V8Profile As the name implies, this flag exposes helper functions to create externalized strings, which might be interesting for fuzzing. --- Sources/FuzzilliCli/Profiles/V8Profile.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/FuzzilliCli/Profiles/V8Profile.swift b/Sources/FuzzilliCli/Profiles/V8Profile.swift index 53b12a96f..d2f9ce4ce 100644 --- a/Sources/FuzzilliCli/Profiles/V8Profile.swift +++ b/Sources/FuzzilliCli/Profiles/V8Profile.swift @@ -423,6 +423,7 @@ let v8Profile = Profile( processArgs: { randomize in var args = [ "--expose-gc", + "--expose-externalize-string", "--omit-quit", "--allow-natives-syntax", "--fuzzing",