Joern Program Slices
收藏资源简介:
This is a dataset of usage slices for ca. 300k open source programs.<br> We publish this dataset as part of our ESORICS '23 paper "Learning Type Inference for Enhanced Dataflow Analysis".<br> You can find more information here: https://github.com/joernio/joernti-codetidal5 <br> The slices were obtained through the code analysis platform <em>Joern</em> and can be used to track<br> the usage of certain objects / variables throughout a procedure, performing various kinds of analyses.<br> For more information, please visit https://github.com/joernio/joern/blob/master/joern-cli/JOERN_SLICE.md. Each slice is in JSON format and contains information about the different namespaces, i.e., function or procedure names, and has entries for every used object, including its name, its type, which calls are being invoked on that object as well as to what other call the object is being passed as an argument.<br> Example: <pre><code class="language-json">{ "objectSlices" : { "CanvasRenderer.ts::program:CanvasRenderer:render" : [ { "targetObj" : { "name" : "dx", "typeFullName" : "__ecma.Number", "literal" : false }, "definedBy" : { "name" : "", "typeFullName" : "ANY", "literal" : false }, "invokedCalls" : [ ], "argToCalls" : [ [ { "callName" : "<operator>.assignment", "paramTypes" : [ "__ecma.Number", "ANY" ], "returnType" : "ANY" }, 1 ], [ { "callName" : "transform", "paramTypes" : [ "ANY", "ANY", "ANY", "ANY", "ANY", "ANY" ], "returnType" : "ANY" }, 5 ] ] }, { "targetObj" : { "name" : "scene", [...]</code></pre>



