├── .gitignore ├── .vscode └── launch.json ├── Readme.md ├── SECURITY.md ├── Save_Model ├── config.json ├── modelX.h5 ├── modelY_1.pkl └── modelY_2.pkl ├── VoteRD_predict.py ├── clean_fragment.py ├── extension.ts ├── feature ├── bytecode_feature.py ├── position_feature.py ├── rule_feature.py ├── text_feature.py ├── two_position_feature.py └── vectorize_fragment.py ├── funs.py ├── models ├── MAML.py ├── x.py └── y.py ├── out ├── extension.js └── extension.js.map ├── package.json ├── predict_input └── tmp.sol ├── tsconfig.json └── vocabulary.model /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/Readme.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Save_Model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/Save_Model/config.json -------------------------------------------------------------------------------- /Save_Model/modelX.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/Save_Model/modelX.h5 -------------------------------------------------------------------------------- /Save_Model/modelY_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/Save_Model/modelY_1.pkl -------------------------------------------------------------------------------- /Save_Model/modelY_2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/Save_Model/modelY_2.pkl -------------------------------------------------------------------------------- /VoteRD_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/VoteRD_predict.py -------------------------------------------------------------------------------- /clean_fragment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/clean_fragment.py -------------------------------------------------------------------------------- /extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/extension.ts -------------------------------------------------------------------------------- /feature/bytecode_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/feature/bytecode_feature.py -------------------------------------------------------------------------------- /feature/position_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/feature/position_feature.py -------------------------------------------------------------------------------- /feature/rule_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/feature/rule_feature.py -------------------------------------------------------------------------------- /feature/text_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/feature/text_feature.py -------------------------------------------------------------------------------- /feature/two_position_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/feature/two_position_feature.py -------------------------------------------------------------------------------- /feature/vectorize_fragment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/feature/vectorize_fragment.py -------------------------------------------------------------------------------- /funs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/funs.py -------------------------------------------------------------------------------- /models/MAML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/models/MAML.py -------------------------------------------------------------------------------- /models/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/models/x.py -------------------------------------------------------------------------------- /models/y.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/models/y.py -------------------------------------------------------------------------------- /out/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/out/extension.js -------------------------------------------------------------------------------- /out/extension.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/out/extension.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/package.json -------------------------------------------------------------------------------- /predict_input/tmp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/predict_input/tmp.sol -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vocabulary.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanghaoxuan/Reentrancy-Vunerability-Detect-Script-for-VScode/HEAD/vocabulary.model --------------------------------------------------------------------------------