├── .gitignore ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── dataset └── vulas_db_msr2019_release.csv ├── images ├── components-2.png └── vulas.png └── notebooks ├── acacia ├── __init__.py ├── commit_in_cve.py ├── git.py ├── git_temporal.py └── utils.py ├── msr2019.ipynb └── msr2019 ├── .keep ├── img └── .keep └── tex └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copernico/msr2019/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copernico/msr2019/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copernico/msr2019/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copernico/msr2019/HEAD/README.md -------------------------------------------------------------------------------- /dataset/vulas_db_msr2019_release.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copernico/msr2019/HEAD/dataset/vulas_db_msr2019_release.csv -------------------------------------------------------------------------------- /images/components-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copernico/msr2019/HEAD/images/components-2.png -------------------------------------------------------------------------------- /images/vulas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copernico/msr2019/HEAD/images/vulas.png -------------------------------------------------------------------------------- /notebooks/acacia/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/acacia/commit_in_cve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copernico/msr2019/HEAD/notebooks/acacia/commit_in_cve.py -------------------------------------------------------------------------------- /notebooks/acacia/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copernico/msr2019/HEAD/notebooks/acacia/git.py -------------------------------------------------------------------------------- /notebooks/acacia/git_temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copernico/msr2019/HEAD/notebooks/acacia/git_temporal.py -------------------------------------------------------------------------------- /notebooks/acacia/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copernico/msr2019/HEAD/notebooks/acacia/utils.py -------------------------------------------------------------------------------- /notebooks/msr2019.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copernico/msr2019/HEAD/notebooks/msr2019.ipynb -------------------------------------------------------------------------------- /notebooks/msr2019/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/msr2019/img/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/msr2019/tex/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------