gitextract_s9rsi9xd/ ├── .gitignore ├── LICENSE ├── README.md ├── docker/ │ ├── bytecodedl/ │ │ └── Dockerfile │ └── neo4j-server/ │ └── Dockerfile ├── docker-compose.yml ├── docs/ │ ├── callgraph.md │ ├── cha-in-ctf.md │ ├── cha-optimization.md │ ├── context-insensitive-points-to.md │ ├── ptaint.md │ ├── query.md │ ├── readme.md │ ├── relation.md │ ├── souffle.md │ └── utils.md ├── example/ │ ├── cha-example-1.dl │ ├── cha-log4shell.dl │ ├── cs-ptaint-example-1.dl │ ├── ctf-buggyLoader.dl │ ├── ctf-ezchain.dl │ ├── one-callsite-sensitive-pt-example-1.dl │ ├── one-object-sensitive-pt-example-1.dl │ ├── one-type-sensitive-pt-example-1.dl │ ├── pt-noctx-example-1.dl │ ├── ptaint-example-1.dl │ ├── ptaint-example-2.dl │ ├── query-example-1.dl │ ├── rta-example-1.dl │ └── simple-cha-log4shell.dl ├── importOuput2Neo4j.sh ├── logic/ │ ├── abstract-context-sensitive-pt.dl │ ├── cha.dl │ ├── cs-ptaint.dl │ ├── inputDeclaration.dl │ ├── one-callsite-sensitive-pt.dl │ ├── one-object-sensitive-pt.dl │ ├── one-type-sensitive-pt.dl │ ├── pt-noctx.dl │ ├── ptaint.dl │ ├── rta.dl │ ├── simple-cha.dl │ └── utils.dl ├── neo4j/ │ ├── CallEdgeHeader.csv │ ├── CallNodeHeader.csv │ └── ChaEdgeHeader.csv ├── neoImportCall-4.4.sh ├── neoImportCall.sh ├── neoImportChaCall-4.4.sh ├── neoImportChaCall.sh └── output/ └── readme.md