├── .gitattributes ├── Dockerfile ├── LICENSE ├── PathEval_Preprint.pdf ├── README.md ├── data ├── logic_bombs_c.jsonl ├── patheval_cpp.jsonl ├── patheval_java.jsonl ├── patheval_py.jsonl └── rw │ └── coreutils │ ├── build.sh │ ├── check.sh │ ├── info.json │ └── p.c ├── example.py ├── patheval.py ├── sample.jsonl ├── scripts ├── c_check.py ├── cpp_check.py ├── include │ ├── a_tester.h │ ├── aes.h │ ├── sha1.h │ └── utils.h ├── java_check.py ├── lib │ ├── aes.c │ ├── crypto_utils.c │ ├── sha1.c │ └── utils.c ├── py_check.py └── utils.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/.gitattributes -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/LICENSE -------------------------------------------------------------------------------- /PathEval_Preprint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/PathEval_Preprint.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/README.md -------------------------------------------------------------------------------- /data/logic_bombs_c.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/data/logic_bombs_c.jsonl -------------------------------------------------------------------------------- /data/patheval_cpp.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/data/patheval_cpp.jsonl -------------------------------------------------------------------------------- /data/patheval_java.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/data/patheval_java.jsonl -------------------------------------------------------------------------------- /data/patheval_py.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/data/patheval_py.jsonl -------------------------------------------------------------------------------- /data/rw/coreutils/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/data/rw/coreutils/build.sh -------------------------------------------------------------------------------- /data/rw/coreutils/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/data/rw/coreutils/check.sh -------------------------------------------------------------------------------- /data/rw/coreutils/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/data/rw/coreutils/info.json -------------------------------------------------------------------------------- /data/rw/coreutils/p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/data/rw/coreutils/p.c -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/example.py -------------------------------------------------------------------------------- /patheval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/patheval.py -------------------------------------------------------------------------------- /sample.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/sample.jsonl -------------------------------------------------------------------------------- /scripts/c_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/c_check.py -------------------------------------------------------------------------------- /scripts/cpp_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/cpp_check.py -------------------------------------------------------------------------------- /scripts/include/a_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/include/a_tester.h -------------------------------------------------------------------------------- /scripts/include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/include/aes.h -------------------------------------------------------------------------------- /scripts/include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/include/sha1.h -------------------------------------------------------------------------------- /scripts/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/include/utils.h -------------------------------------------------------------------------------- /scripts/java_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/java_check.py -------------------------------------------------------------------------------- /scripts/lib/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/lib/aes.c -------------------------------------------------------------------------------- /scripts/lib/crypto_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/lib/crypto_utils.c -------------------------------------------------------------------------------- /scripts/lib/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/lib/sha1.c -------------------------------------------------------------------------------- /scripts/lib/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/lib/utils.c -------------------------------------------------------------------------------- /scripts/py_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/py_check.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGCL-codes/PathEval/HEAD/utils.py --------------------------------------------------------------------------------