├── .gitignore ├── README.md ├── data ├── libDetail.json ├── libs.json ├── pollutes.json └── pollutesForWindow.json ├── getLibDetail.js ├── getLibs.js ├── package.json ├── scan.js └── scanning_test.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_STORE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszx87410/cdnjs-prototype-pollution/HEAD/README.md -------------------------------------------------------------------------------- /data/libDetail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszx87410/cdnjs-prototype-pollution/HEAD/data/libDetail.json -------------------------------------------------------------------------------- /data/libs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszx87410/cdnjs-prototype-pollution/HEAD/data/libs.json -------------------------------------------------------------------------------- /data/pollutes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszx87410/cdnjs-prototype-pollution/HEAD/data/pollutes.json -------------------------------------------------------------------------------- /data/pollutesForWindow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszx87410/cdnjs-prototype-pollution/HEAD/data/pollutesForWindow.json -------------------------------------------------------------------------------- /getLibDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszx87410/cdnjs-prototype-pollution/HEAD/getLibDetail.js -------------------------------------------------------------------------------- /getLibs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszx87410/cdnjs-prototype-pollution/HEAD/getLibs.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszx87410/cdnjs-prototype-pollution/HEAD/package.json -------------------------------------------------------------------------------- /scan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszx87410/cdnjs-prototype-pollution/HEAD/scan.js -------------------------------------------------------------------------------- /scanning_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aszx87410/cdnjs-prototype-pollution/HEAD/scanning_test.html --------------------------------------------------------------------------------