fuzzilli icon indicating copy to clipboard operation
fuzzilli copied to clipboard

JSLifter Nested String Lifting Bug

Open TobiasWienand opened this issue 1 year ago • 0 comments

Here is a before and after after compiling before.js to after.js

// before.js

var s = 'some "text"';
// after.js

var s = "some "text""; // <-- text becomes an identifier

TobiasWienand avatar Dec 30 '24 21:12 TobiasWienand