├── DeepCVA ├── multi_task_sequential_crnn.csv ├── multi_task_sequential_crnn.py └── multi_task_sequential_crnn.sh ├── LICENSE ├── README.md ├── cvss_map.csv ├── helpers ├── __init__.py ├── extract_logfile_time.py ├── feature_model_helpers.py ├── parse_multitask_results.py ├── stats_helpers.py └── tokenizer.py ├── infer_features ├── infer_features.py ├── infer_features_ast.csv ├── infer_features_ast.py ├── infer_features_ast.sh ├── infer_features_sequential.csv ├── infer_features_sequential.py ├── infer_features_sequential.sh ├── inputs.csv ├── partition_data.py ├── text_processing.py ├── tokenizer.py ├── train_feature_model.py ├── train_feature_model_ast.csv ├── train_feature_model_ast.py └── train_feature_model_ast.sh ├── infer_pipeline.sh ├── kmeans_baseline ├── main.csv ├── main.py └── main.sh ├── ml_model ├── cvss_inputs.csv ├── extra_evaluate.py └── model_evaluation.py ├── model_pipeline.sh └── requirements.txt /DeepCVA/multi_task_sequential_crnn.csv: -------------------------------------------------------------------------------- 1 | code,hc,word -------------------------------------------------------------------------------- /DeepCVA/multi_task_sequential_crnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/DeepCVA/multi_task_sequential_crnn.py -------------------------------------------------------------------------------- /DeepCVA/multi_task_sequential_crnn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/DeepCVA/multi_task_sequential_crnn.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/README.md -------------------------------------------------------------------------------- /cvss_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/cvss_map.csv -------------------------------------------------------------------------------- /helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpers/extract_logfile_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/helpers/extract_logfile_time.py -------------------------------------------------------------------------------- /helpers/feature_model_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/helpers/feature_model_helpers.py -------------------------------------------------------------------------------- /helpers/parse_multitask_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/helpers/parse_multitask_results.py -------------------------------------------------------------------------------- /helpers/stats_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/helpers/stats_helpers.py -------------------------------------------------------------------------------- /helpers/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/helpers/tokenizer.py -------------------------------------------------------------------------------- /infer_features/infer_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/infer_features.py -------------------------------------------------------------------------------- /infer_features/infer_features_ast.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/infer_features_ast.csv -------------------------------------------------------------------------------- /infer_features/infer_features_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/infer_features_ast.py -------------------------------------------------------------------------------- /infer_features/infer_features_ast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/infer_features_ast.sh -------------------------------------------------------------------------------- /infer_features/infer_features_sequential.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/infer_features_sequential.csv -------------------------------------------------------------------------------- /infer_features/infer_features_sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/infer_features_sequential.py -------------------------------------------------------------------------------- /infer_features/infer_features_sequential.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/infer_features_sequential.sh -------------------------------------------------------------------------------- /infer_features/inputs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/inputs.csv -------------------------------------------------------------------------------- /infer_features/partition_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/partition_data.py -------------------------------------------------------------------------------- /infer_features/text_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/text_processing.py -------------------------------------------------------------------------------- /infer_features/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/tokenizer.py -------------------------------------------------------------------------------- /infer_features/train_feature_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/train_feature_model.py -------------------------------------------------------------------------------- /infer_features/train_feature_model_ast.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/train_feature_model_ast.csv -------------------------------------------------------------------------------- /infer_features/train_feature_model_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/train_feature_model_ast.py -------------------------------------------------------------------------------- /infer_features/train_feature_model_ast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_features/train_feature_model_ast.sh -------------------------------------------------------------------------------- /infer_pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/infer_pipeline.sh -------------------------------------------------------------------------------- /kmeans_baseline/main.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/kmeans_baseline/main.csv -------------------------------------------------------------------------------- /kmeans_baseline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/kmeans_baseline/main.py -------------------------------------------------------------------------------- /kmeans_baseline/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/kmeans_baseline/main.sh -------------------------------------------------------------------------------- /ml_model/cvss_inputs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/ml_model/cvss_inputs.csv -------------------------------------------------------------------------------- /ml_model/extra_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/ml_model/extra_evaluate.py -------------------------------------------------------------------------------- /ml_model/model_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/ml_model/model_evaluation.py -------------------------------------------------------------------------------- /model_pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/model_pipeline.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhmtriet/DeepCVA/HEAD/requirements.txt --------------------------------------------------------------------------------