Joern Program Slices
收藏NIAID Data Ecosystem2026-05-01 收录
下载链接:
https://zenodo.org/record/8321613
下载链接
链接失效反馈官方服务:
资源简介:
This is a dataset of usage slices for ca. 300k open source programs.
We publish this dataset as part of our ESORICS '23 paper "Learning Type Inference for Enhanced Dataflow Analysis".
You can find more information here: https://github.com/joernio/joernti-codetidal5
The slices were obtained through the code analysis platform Joern and can be used to track
the usage of certain objects / variables throughout a procedure, performing various kinds of analyses.
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.
Example:
{
"objectSlices" : {
"CanvasRenderer.ts::program:CanvasRenderer:render" : [
{
"targetObj" : {
"name" : "dx",
"typeFullName" : "__ecma.Number",
"literal" : false
},
"definedBy" : {
"name" : "",
"typeFullName" : "ANY",
"literal" : false
},
"invokedCalls" : [
],
"argToCalls" : [
[
{
"callName" : ".assignment",
"paramTypes" : [
"__ecma.Number",
"ANY"
],
"returnType" : "ANY"
},
1
],
[
{
"callName" : "transform",
"paramTypes" : [
"ANY",
"ANY",
"ANY",
"ANY",
"ANY",
"ANY"
],
"returnType" : "ANY"
},
5
]
]
},
{
"targetObj" : {
"name" : "scene",
[...]
创建时间:
2023-09-06



