Fuzzilli - A JavaScript Engine Fuzzer
2020-11-22 05:30:00 Author: www.blogger.com(查看原文) 阅读量:204 收藏

tag:blogger.com,1999:blog-8317222231133660547.post-87667436622982227852020-11-21T17:30:00.008-03:002020-11-21T17:30:00.298-03:00Fuzzilli - A JavaScript Engine Fuzzer<div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-baywoaHmuas/X7dY6GbwC1I/AAAAAAAAUbo/jDpqwD_-UOkhzq98AhL8_vvWCKH3TlBvwCNcBGAsYHQ/s781/Fuzzilli.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="466" data-original-width="781" height="382" src="https://1.bp.blogspot.com/-baywoaHmuas/X7dY6GbwC1I/AAAAAAAAUbo/jDpqwD_-UOkhzq98AhL8_vvWCKH3TlBvwCNcBGAsYHQ/w640-h382/Fuzzilli.png" width="640" /></a></div><p><br /></p><p>A (coverage-)guided fuzzer for dynamic language interpreters based on a custom intermediate language ("FuzzIL") which can be mutated and translated to JavaScript.</p> <span><a name='more'></a></span><div><br /></div><span style="font-size: large;"><b>Usage</b></span><br /> <p>The basic steps to use this fuzzer are:</p> <ol> <li>Download the source code for one of the supported JavaScript engines. See the <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Targets" rel="nofollow" target="_blank" title="Targets/">Targets/</a> directory for the list of supported JavaScript engines.</li> <li>Apply the corresponding patches from the target's directory. Also see the README.md in that directory.</li> <li>Compile the engine with coverage <a href="https://www.kitploit.com/search/label/Instrumentation" target="_blank" title="instrumentation">instrumentation</a> (requires clang &gt;= 4.0) as described in the README.</li> <li>Compile the fuzzer: <code>swift build [-c release]</code>.</li> <li>Run the fuzzer: <code>swift run [-c release] FuzzilliCli --profile=&lt;profile&gt; [other cli options] /path/to/jsshell</code>. See also <code>swift run FuzzilliCli --help</code>.</li> </ol> <p>Building and running Fuzzilli and the supported JavaScript engines inside Docker and on Google Compute Engine is <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Cloud" rel="nofollow" target="_blank" title="also supported">also supported</a>.</p> <br /><b>Hacking</b><br /> <p>Check out <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/FuzzilliCli/main.swift" rel="nofollow" target="_blank" title="main.swift">main.swift</a> to see a usage example of the Fuzzilli library and play with the various configuration options. Next, take a look at <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Fuzzer.swift" rel="nofollow" target="_blank" title="Fuzzer.swift">Fuzzer.swift</a> for the highlevel fuzzing logic. From there dive into any part that seems interesting.</p> <p>Patches, additions, other contributions etc. to this project are very welcome! However, do quickly check <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/CONTRIBUTING.md" rel="nofollow" target="_blank" title="the notes for contributors">the notes for contributors</a>. Fuzzilli roughly follows <a href="https://google.github.io/swift/" rel="nofollow" target="_blank" title="Google's code style guide for swift">Google's code style guide for swift</a>.</p> <p>It would be much appreciated if you could send a short note (possibly including a CVE number) to <a href="mailto:[email protected]" rel="nofollow" target="_blank" title="[email protected]">[email protected]</a> or open a pull request for any <a href="https://www.kitploit.com/search/label/Vulnerability" target="_blank" title="vulnerability">vulnerability</a> found with the help of this project so it can be included in the <a href="https://github.com/googleprojectzero/fuzzilli#bug-showcase" rel="nofollow" target="_blank" title="bug showcase">bug showcase</a> section. Other than that you can of course claim any bug bounty, CVE credits, etc. for the <a href="https://www.kitploit.com/search/label/vulnerabilities" target="_blank" title="vulnerabilities">vulnerabilities</a> :)</p> <br /><span style="font-size: large;"><b>Concept</b></span><br /> <p>When fuzzing for core interpreter bugs, e.g. in JIT compilers, semantic correctness of generated programs becomes a concern. This is in contrast to most other scenarios, e.g. fuzzing of runtime APIs, in which case semantic correctness can easily be worked around by wrapping the generated code in try-catch constructs. There are different possibilities to achieve an acceptable rate of semantically correct samples, one of them being a mutational approach in which all samples in the corpus are also semantically valid. In that case, each mutation only has a small chance of turning a valid sample into an invalid one.</p> <p>To implement a mutation-based JavaScript fuzzer, mutations to JavaScript code have to be defined. Instead of mutating the AST, or other syntactic elements of a program, a custom intermediate language (IL) is defined on which mutations to the control and data flow of a program can more directly be performed. This IL is afterwards translated to JavaScript for execution. The intermediate language looks roughly as follows:</p> <pre><code>v0 &lt;− LoadInteger '0'<br />v1 &lt;− LoadInteger '10'<br />v2 &lt;− LoadInteger '1'<br />v3 &lt;− LoadInteger '0'<br />BeginFor v0, '&lt;', v1, '+', v2 −&gt; v4<br /> v6 &lt;− BinaryOperation v3, '+', v4<br /> Reassign v3, v6<br />EndFor<br />v7 &lt;− LoadString 'Result: '<br />v8 &lt;− BinaryOperation v7, '+', v3<br />v9 &lt;− LoadGlobal 'console'<br />v10 &lt;− CallMethod v9, 'log', [v8]<br /></code></pre> <p>Which can e.g. be trivially translated to the following JavaScript code:</p> <pre><code>const v0 = 0;<br />const v1 = 10;<br />const v2 = 1;<br />let v3 = 0;<br />for (let v4 = v0; v4 &lt; v1; v4 = v4 + v2) {<br /> const v6 = v3 + v4;<br /> v3 = v6;<br />}<br />const v7 = "Result: ";<br />const v8 = v7 + v3;<br />const v9 = console;<br />const v10 = v9.log(v8);<br /></code></pre> <p>Or to the following JavaScript code by inlining intermediate expressions:</p> <pre><code>let v3 = 0;<br />for (let v4 = 0; v4 &lt; 10; v4++) {<br /> v3 = v3 + v4;<br />}<br />console.log("Result: " + v3);<br /></code></pre> <p>FuzzIL has a number of properties:</p> <ul> <li>A FuzzIL program is simply a list of instructions.</li> <li>A FuzzIL instruction is an operation together with input and output variables and potentially one or more parameters (enclosed in single quotes in the notation above).</li> <li>Inputs to instructions are always variables, there are no immediate values.</li> <li>Every output of an instruction is a new variable, and existing variables can only be reassigned through dedicated operations such as the <code>Reassign</code> instruction.</li> <li>Every variable is defined before it is used.</li> </ul> <p>A number of mutations can then be performed on these programs:</p> <ul> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Mutators/InputMutator.swift" rel="nofollow" target="_blank" title="InputMutator">InputMutator</a>: replaces input variables of instructions with different ones to mutate the dataflow of the program.</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Mutators/CodeGenMutator.swift" rel="nofollow" target="_blank" title="CodeGenMutator">CodeGenMutator</a>: generates code and inserts it somewhere in the mutated program. Code is generated either by running a <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Core/CodeGenerators.swift" rel="nofollow" target="_blank" title="code generator">code generator</a> or by copying some instructions from another program in the corpus (splicing).</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Mutators/CombineMutator.swift" rel="nofollow" target="_blank" title="CombineMutator">CombineMutator</a>: inserts a program from the corpus into a random position in the mutated program.</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Mutators/OperationMutator.swift" rel="nofollow" target="_blank" title="OperationMutator">OperationMutator</a>: mutates the parameters of operations, for example replacing an integer constant with a different one.</li> <li>and more...</li> </ul> <br /><span style="font-size: large;"><b>Implementation</b></span><br /> <p>The fuzzer is implemented in <a href="https://swift.org/" rel="nofollow" target="_blank" title="Swift">Swift</a>, with some parts (e.g. coverage measurements, socket interactions, etc.) implemented in C.</p> <br /><b>Architecture</b><br /> <p>A fuzzer instance (implemented in <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Fuzzer.swift" rel="nofollow" target="_blank" title="Fuzzer.swift">Fuzzer.swift</a>) is made up of the following central components:</p> <ul> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Core/MutationFuzzer.swift" rel="nofollow" target="_blank" title="MutationFuzzer">MutationFuzzer</a>: produces new programs from existing ones by applying <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Mutators" rel="nofollow" target="_blank" title="mutations">mutations</a>. Afterwards executes the produced samples and evaluates them.</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Execution" rel="nofollow" target="_blank" title="ScriptRunner">ScriptRunner</a>: executes programs of the target language.</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Core/Corpus.swift" rel="nofollow" target="_blank" title="Corpus">Corpus</a>: stores interesting samples and supplies them to the core fuzzer.</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Core/JavaScriptEnvironment.swift" rel="nofollow" target="_blank" title="Environment">Environment</a>: has knowledge of the runtime environment, e.g. the available builtins, property names, and methods.</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Minimization/Minimizer.swift" rel="nofollow" target="_blank" title="Minimizer">Minimizer</a>: minimizes crashing and interesting programs.</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Evaluation" rel="nofollow" target="_blank" title="Evaluator">Evaluator</a>: evaluates whether a sample is interesting according to some metric, e.g. code coverage.</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Lifting" rel="nofollow" target="_blank" title="Lifter">Lifter</a>: translates a FuzzIL program to the target language (JavaScript).</li> </ul> <p>Furthermore, a number of modules are optionally available:</p> <ul> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Modules/Statistics.swift" rel="nofollow" target="_blank" title="Statistics">Statistics</a>: gathers various pieces of statistical information.</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Modules/NetworkSync.swift" rel="nofollow" target="_blank" title="NetworkWorker/NetworkMaster">NetworkWorker/NetworkMaster</a>: synchronize multiple instances over the network.</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Modules/ThreadSync.swift" rel="nofollow" target="_blank" title="ThreadWorker/ThreadMaster">ThreadWorker/ThreadMaster</a>: synchronize multiple instances within the same process.</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Modules/Storage.swift" rel="nofollow" target="_blank" title="Storage">Storage</a>: stores crashing programs to disk.</li> </ul> <p>The fuzzer is event-driven, with most of the interactions between different classes happening through events. Events are dispatched e.g. as a result of a crash or an interesting program being found, a new program being executed, a log message being generated and so on. See <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Core/Events.swift" rel="nofollow" target="_blank" title="Events.swift">Events.swift</a> for the full list of events. The event mechanism effectively decouples the various components of the fuzzer and makes it easy to implement additional modules.</p> <p>A FuzzIL program can be built up using a <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Core/ProgramBuilder.swift" rel="nofollow" target="_blank" title="ProgramBuilder">ProgramBuilder</a> instance. A ProgramBuilder provides methods to create and append new instructions, append instructions from another program, retrieve existing variables, query the execution context at the current position (e.g. whether it is inside a loop), and more.</p> <br /><b>Execution</b><br /> <p>Fuzzilli uses a custom execution mode called <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Execution/REPRL.swift" rel="nofollow" target="_blank" title="REPRL (read-eval-print-reset-loop)">REPRL (read-eval-print-reset-loop)</a>. For that, the target engine is modified to accept a script input over pipes and/or shared memory, execute it, then reset its internal state and wait for the next script. This removes the overhead from process creation and to a large part from the engine ininitializaiton.</p> <br /><b>Scalability</b><br /> <p>There is one <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Fuzzer.swift" rel="nofollow" target="_blank" title="Fuzzer">Fuzzer</a> instance per target process. This enables synchronous execution of programs and thereby simplifies the implementation of various algorithms such as consecutive mutations and minimization. Moreover, it avoids the need to implement thread-safe access to internal state, e.g. the corpus. Each fuzzer instance has its own <a href="https://developer.apple.com/documentation/dispatch/dispatchqueue" rel="nofollow" target="_blank" title="DispatchQueue">DispatchQueue</a>, conceptually corresponding to a single thread. As a rule of thumb, every interaction with a Fuzzer instance must happen on that instance’s dispatch queue. This guarantees thread-safety as the queue is serial. For more details see <a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Docs/ProcessingModel.md" le="the docs" rel="nofollow" target="_blank" tit="">the docs</a>.</p> <p>To scale, fuzzer instances can become workers, in which case they report newly found interesting samples and <a href="https://www.kitploit.com/search/label/Crashes" target="_blank" title="crashes">crashes</a> to a master instance. In turn, the master instances also synchronize their corpus with the workers. Communication between masters and workers can happen in different ways, each implemented as a module:</p> <ul> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Modules/ThreadSync.swift" rel="nofollow" target="_blank" title="Inter-thread communication">Inter-thread communication</a>: synchronize instances in the same process by enqueuing tasks to the other fuzzer’s DispatchQueue.</li> <li>Inter-process communication (TODO): synchronize instances over an IPC channel.</li> <li><a href="https://github.com/googleprojectzero/fuzzilli/blob/master/Sources/Fuzzilli/Modules/NetworkSync.swift" rel="nofollow" target="_blank" title="Inter-machine communication">Inter-machine communication</a>: synchronize instances over a simple TCP-based protocol.</li> </ul> <p>This design allows the fuzzer to scale to many cores on a single machine as well as to many different machines. As one master instance can quickly become overloaded if too many workers send programs to it, it is also possible to configure multiple tiers of master instances, e.g. one master instance, 16 intermediate masters connected to the master, and 256 workers connected to the intermediate masters.</p> <br /><span style="font-size: large;"><b>Resources</b></span><br /> <p>Further resources about this fuzzer:</p> <ul> <li>A <a href="https://saelo.github.io/presentations/offensivecon_19_fuzzilli.pdf" rel="nofollow" target="_blank" title="presentation">presentation</a> about Fuzzilli given at Offensive Con 2019.</li> <li>The <a href="https://saelo.github.io/papers/thesis.pdf" rel="nofollow" target="_blank" title="master's thesis">master's thesis</a> for which the initial implementation was done.</li> <li>A <a href="https://sensepost.com/blog/2020/the-hunt-for-chromium-issue-1072171/" rel="nofollow" target="_blank" title="blogpost">blogpost</a> by Sensepost about using Fuzzilli to find a bug in v8</li> <li>A <a href="https://blog.doyensec.com/2020/09/09/fuzzilli-jerryscript.html" rel="nofollow" target="_blank" title="blogpost">blogpost</a> by Doyensec about fuzzing the JerryScript engine with Fuzzilli</li> </ul> <br /><span style="font-size: large;"><b>Bug Showcase</b></span><br /> <p>The following is a list of some of the bugs found with the help of Fuzzilli. Only bugs with security impact are included in the list. Special thanks to all users of Fuzzilli who have reported bugs found by it!</p> <br /><b>WebKit/JavaScriptCore</b><br /> <ul> <li><a href="https://bugs.webkit.org/show_bug.cgi?id=185328" rel="nofollow" target="_blank" title="Issue 185328">Issue 185328</a>: DFG <a href="https://www.kitploit.com/search/label/Compiler" target="_blank" title="Compiler">Compiler</a> uses incorrect output register for NumberIsInteger operation</li> <li><a href="https://www.zerodayinitiative.com/advisories/ZDI-18-1081/" rel="nofollow" target="_blank" title="CVE-2018-4299">CVE-2018-4299</a>: performProxyCall leaks internal object to script</li> <li><a href="https://bugs.webkit.org/show_bug.cgi?id=187451" rel="nofollow" target="_blank" title="CVE-2018-4359">CVE-2018-4359</a>: compileMathIC produces incorrect machine code</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1775" rel="nofollow" target="_blank" title="CVE-2019-8518">CVE-2019-8518</a>: OOB access in FTL JIT due to LICM moving array access before the bounds check</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1783" rel="nofollow" target="_blank" title="CVE-2019-8558">CVE-2019-8558</a>: CodeBlock UaF due to dangling Watchpoints</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1788" rel="nofollow" target="_blank" title="CVE-2019-8611">CVE-2019-8611</a>: AIR optimization incorrectly removes assignment to register</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1789" rel="nofollow" target="_blank" title="CVE-2019-8623">CVE-2019-8623</a>: Loop-invariant code motion (LICM) in DFG JIT leaves stack variable uninitialized</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1802" rel="nofollow" target="_blank" title="CVE-2019-8622">CVE-2019-8622</a>: DFG's doesGC() is incorrect about the HasIndexedProperty operation's behaviour on StringObjects</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1822" rel="nofollow" target="_blank" title="CVE-2019-8671">CVE-2019-8671</a>: DFG: Loop-invariant code motion (LICM) leaves object property access unguarded</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1825" rel="nofollow" target="_blank" title="CVE-2019-8672">CVE-2019-8672</a>: JSValue use-after-free in ValueProfiles</li> <li><a href="https://bugs.webkit.org/show_bug.cgi?id=198259" rel="nofollow" target="_blank" title="CVE-2019-8678">CVE-2019-8678</a>: JSC fails to run haveABadTime() when some prototypes are modified, leading to type confusions</li> <li><a href="https://bugs.webkit.org/show_bug.cgi?id=197691" rel="nofollow" target="_blank" title="CVE-2019-8685">CVE-2019-8685</a>: JSPropertyNameEnumerator uses wrong structure IDs</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1915" rel="nofollow" target="_blank" title="CVE-2019-8765">CVE-2019-8765</a>: GetterSetter type confusion during DFG compilation</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1924" rel="nofollow" target="_blank" title="CVE-2019-8820">CVE-2019-8820</a>: Type confusion during bailout when reconstructing arguments objects</li> <li><a href="https://bugs.webkit.org/show_bug.cgi?id=206805" rel="nofollow" target="_blank" title="CVE-2020-3901">CVE-2020-3901</a>: GetterSetter type confusion in FTL JIT code (due to not always safe LICM)</li> </ul> <br /><b>Gecko/Spidermonkey</b><br /> <ul> <li><a href="https://ssd-disclosure.com/archives/3765/ssd-advisory-firefox-javascript-type-confusion-rce" rel="nofollow" target="_blank" title="CVE-2018-12386">CVE-2018-12386</a>: IonMonkey register allocation bug leads to type confusions</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1791" rel="nofollow" target="_blank" title="CVE-2019-9791">CVE-2019-9791</a>: IonMonkey's type inference is incorrect for constructors entered via OSR</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1794" rel="nofollow" target="_blank" title="CVE-2019-9792">CVE-2019-9792</a>: IonMonkey leaks JS_OPTIMIZED_OUT magic value to script</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1808" rel="nofollow" target="_blank" title="CVE-2019-9816">CVE-2019-9816</a>: unexpected ObjectGroup in ObjectGroupDispatch operation</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1810" rel="nofollow" target="_blank" title="CVE-2019-9813">CVE-2019-9813</a>: IonMonkey compiled code fails to update inferred property types, leading to type confusions</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1820" rel="nofollow" target="_blank" title="CVE-2019-11707">CVE-2019-11707</a>: IonMonkey incorrectly predicts return type of Array.prototype.pop, leading to type confusions</li> <li><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1647293" rel="nofollow" target="_blank" title="CVE-2020-15656">CVE-2020-15656</a>: Type confusion for special arguments in IonMonkey</li> </ul> <br /><b>Chromium/v8</b><br /> <ul> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1799" rel="nofollow" target="_blank" title="Issue 939316">Issue 939316</a>: Turbofan may read a Map pointer out-of-bounds when optimizing Reflect.construct</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1809" rel="nofollow" target="_blank" title="Issue 944062">Issue 944062</a>: JSCallReducer::ReduceArrayIndexOfIncludes fails to insert Map checks</li> <li><a href="https://bugs.chromium.org/p/chromium/issues/detail?id=950328" rel="nofollow" target="_blank" title="CVE-2019-5831">CVE-2019-5831</a>: Incorrect map processing in V8</li> <li><a href="https://bugs.chromium.org/p/chromium/issues/detail?id=944865" rel="nofollow" target="_blank" title="Issue 944865">Issue 944865</a>: Invalid value representation in V8</li> <li><a href="https://bugs.chromium.org/p/chromium/issues/detail?id=969588" rel="nofollow" target="_blank" title="CVE-2019-5841">CVE-2019-5841</a>: Bug in inlining heuristic</li> <li><a href="https://bugs.chromium.org/p/chromium/issues/detail?id=972921" rel="nofollow" target="_blank" title="CVE-2019-5847">CVE-2019-5847</a>: V8 sealed/frozen elements cause crash</li> <li><a href="https://bugs.chromium.org/p/chromium/issues/detail?id=976627" rel="nofollow" target="_blank" title="CVE-2019-5853">CVE-2019-5853</a>: Memory corruption in regexp length check</li> <li><a href="https://bugs.chromium.org/p/project-zero/issues/detail?id=1923" rel="nofollow" target="_blank" title="Issue 992914">Issue 992914</a>: Map migration doesn't respect element kinds, leading to type confusion</li> <li><a href="https://bugs.chromium.org/p/chromium/issues/detail?id=1084820" rel="nofollow" target="_blank" title="CVE-2020-6512">CVE-2020-6512</a>: Type Confusion in V8</li> </ul> <br /><b><a href="https://github.com/svaarala/duktape" rel="nofollow" target="_blank" title="Duktape">Duktape</a></b><br /> <ul> <li><a href="https://github.com/svaarala/duktape/pull/2323" rel="nofollow" target="_blank" title="Issue 2323">Issue 2323</a>: Unstable valstack pointer in putprop</li> <li><a href="https://github.com/svaarala/duktape/pull/2320" rel="nofollow" target="_blank" title="Issue 2320">Issue 2320</a>: Memcmp pointer overflow in string builtin</li> </ul> <br /><b><a href="https://github.com/jerryscript-project/jerryscript" rel="nofollow" target="_blank" title="JerryScript">JerryScript</a></b><br /> <ul> <li><a href="https://github.com/jerryscript-project/jerryscript/issues/3858" rel="nofollow" target="_blank" title="CVE-2020-13991">CVE-2020-13991</a>: Incorrect release of spread arguments</li> <li><a href="https://github.com/jerryscript-project/jerryscript/issues/3784" rel="nofollow" target="_blank" title="Issue 3784">Issue 3784</a>: Memory corruption due to incorrect property enumeration</li> <li><a href="https://github.com/jerryscript-project/jerryscript/issues/3785" rel="nofollow" target="_blank" title="CVE-2020-13623">CVE-2020-13623</a>: Stack overflow via property keys for Proxy objects</li> <li><a href="https://github.com/jerryscript-project/jerryscript/issues/3786" rel="nofollow" target="_blank" title="CVE-2020-13649 (1)">CVE-2020-13649 (1)</a>: Memory corruption due to error handling in case of OOM</li> <li><a href="https://github.com/jerryscript-project/jerryscript/issues/3788" rel="nofollow" target="_blank" title="CVE-2020-13649 (2)">CVE-2020-13649 (2)</a>: Memory corruption due to error handling in case of OOM</li> <li><a href="https://github.com/jerryscript-project/jerryscript/issues/3787" rel="nofollow" target="_blank" title="CVE-2020-13622">CVE-2020-13622</a>: Memory corruption due to incorrect handling of property keys for Proxy objects</li> <li><a href="https://github.com/jerryscript-project/jerryscript/issues/3804" rel="nofollow" target="_blank" title="CVE-2020-14163">CVE-2020-14163</a>: Memory corruption due to race condition triggered by garbage collection when adding key/value pairs</li> <li><a href="https://github.com/jerryscript-project/jerryscript/issues/3813" rel="nofollow" target="_blank" title="Issue 3813">Issue 3813</a>: Incorrect error handling in SerializeJSONProperty function</li> <li><a href="https://github.com/jerryscript-project/jerryscript/issues/3814" rel="nofollow" target="_blank" title="Issue 3814">Issue 3814</a>: Unexpected Proxy object in ecma_op_function_has_instance assertion</li> <li><a href="https://github.com/jerryscript-project/jerryscript/issues/3836" rel="nofollow" target="_blank" title="Issue 3836">Issue 3836</a>: Memory corruption due to incorrect TypedArray initialization</li> <li><a href="https://github.com/jerryscript-project/jerryscript/issues/3837" rel="nofollow" target="_blank" title="Issue 3837">Issue 3837</a>: Memory corruption due to incorrect memory handling in getOwnPropertyDescriptor</li> </ul> <br /><span style="font-size: large;"><b>Disclaimer</b></span><br /> <p>This is not an officially supported Google product.</p> <br /><br /><div style="text-align: center;"><b><span style="font-size: x-large;"><a class="kiploit-download" href="https://github.com/googleprojectzero/fuzzilli" rel="nofollow" target="_blank" title="Download Fuzzilli">Download Fuzzilli</a></span></b></div>Zion3R[email protected]

文章来源: http://www.blogger.com/feeds/8317222231133660547/posts/default/8766743662298222785
如有侵权请联系:admin#unsafe.sh