├── .gitignore └── published ├── CVE-2019-9901-path-traversal.md ├── images └── owasp-xss.png ├── javascript-security-cheat-sheet.md ├── mean_io-review.md ├── owasp_top_10_for_js_-_xss.md ├── safenuget.md └── the_problem_with_jsonp.md /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /published/CVE-2019-9901-path-traversal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoftedal/writings/HEAD/published/CVE-2019-9901-path-traversal.md -------------------------------------------------------------------------------- /published/images/owasp-xss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoftedal/writings/HEAD/published/images/owasp-xss.png -------------------------------------------------------------------------------- /published/javascript-security-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoftedal/writings/HEAD/published/javascript-security-cheat-sheet.md -------------------------------------------------------------------------------- /published/mean_io-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoftedal/writings/HEAD/published/mean_io-review.md -------------------------------------------------------------------------------- /published/owasp_top_10_for_js_-_xss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoftedal/writings/HEAD/published/owasp_top_10_for_js_-_xss.md -------------------------------------------------------------------------------- /published/safenuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoftedal/writings/HEAD/published/safenuget.md -------------------------------------------------------------------------------- /published/the_problem_with_jsonp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoftedal/writings/HEAD/published/the_problem_with_jsonp.md --------------------------------------------------------------------------------