├── .gitignore ├── 404.html ├── ASST.bat ├── ASST.sh ├── Gemfile ├── LICENSE.md ├── README.md ├── _config.yml ├── assets └── images │ ├── README.md │ └── asst.jpg ├── config.js ├── config_php_lang.js ├── core └── index.js ├── index.md ├── info.md ├── langs └── php │ ├── core.js │ ├── docs │ ├── php_broken_authentication_prevention.docx │ ├── php_broken_authentication_prevention.pdf │ ├── php_cross_site_request_forgery_prevention.docx │ ├── php_cross_site_request_forgery_prevention.pdf │ ├── php_cross_site_scripting_prevention.docx │ ├── php_cross_site_scripting_prevention.pdf │ ├── php_extra_web_security_hardenings.docx │ ├── php_extra_web_security_hardenings.pdf │ ├── php_injection_prevention.docx │ ├── php_injection_prevention.pdf │ ├── php_other_web_security_suggestions.docx │ ├── php_other_web_security_suggestions.pdf │ ├── php_security_misconfiguration_prevention.docx │ ├── php_security_misconfiguration_prevention.pdf │ ├── php_sensitive_data_exposure_prevention.docx │ ├── php_sensitive_data_exposure_prevention.pdf │ ├── php_server_side_request_forgery_prevention.docx │ ├── php_server_side_request_forgery_prevention.pdf │ ├── php_using_components_with_known_vulnerabilities_prevention.docx │ ├── php_using_components_with_known_vulnerabilities_prevention.pdf │ ├── php_xml_external_entity_injection_prevention.docx │ └── php_xml_external_entity_injection_prevention.pdf │ └── index.js ├── leaders.md ├── main.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/.gitignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/404.html -------------------------------------------------------------------------------- /ASST.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/ASST.bat -------------------------------------------------------------------------------- /ASST.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo Welcome to OWASP ASST 3 | node main.js 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/assets/images/README.md -------------------------------------------------------------------------------- /assets/images/asst.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/assets/images/asst.jpg -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/config.js -------------------------------------------------------------------------------- /config_php_lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/config_php_lang.js -------------------------------------------------------------------------------- /core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/core/index.js -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/index.md -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/info.md -------------------------------------------------------------------------------- /langs/php/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/core.js -------------------------------------------------------------------------------- /langs/php/docs/php_broken_authentication_prevention.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_broken_authentication_prevention.docx -------------------------------------------------------------------------------- /langs/php/docs/php_broken_authentication_prevention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_broken_authentication_prevention.pdf -------------------------------------------------------------------------------- /langs/php/docs/php_cross_site_request_forgery_prevention.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_cross_site_request_forgery_prevention.docx -------------------------------------------------------------------------------- /langs/php/docs/php_cross_site_request_forgery_prevention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_cross_site_request_forgery_prevention.pdf -------------------------------------------------------------------------------- /langs/php/docs/php_cross_site_scripting_prevention.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_cross_site_scripting_prevention.docx -------------------------------------------------------------------------------- /langs/php/docs/php_cross_site_scripting_prevention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_cross_site_scripting_prevention.pdf -------------------------------------------------------------------------------- /langs/php/docs/php_extra_web_security_hardenings.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_extra_web_security_hardenings.docx -------------------------------------------------------------------------------- /langs/php/docs/php_extra_web_security_hardenings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_extra_web_security_hardenings.pdf -------------------------------------------------------------------------------- /langs/php/docs/php_injection_prevention.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_injection_prevention.docx -------------------------------------------------------------------------------- /langs/php/docs/php_injection_prevention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_injection_prevention.pdf -------------------------------------------------------------------------------- /langs/php/docs/php_other_web_security_suggestions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_other_web_security_suggestions.docx -------------------------------------------------------------------------------- /langs/php/docs/php_other_web_security_suggestions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_other_web_security_suggestions.pdf -------------------------------------------------------------------------------- /langs/php/docs/php_security_misconfiguration_prevention.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_security_misconfiguration_prevention.docx -------------------------------------------------------------------------------- /langs/php/docs/php_security_misconfiguration_prevention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_security_misconfiguration_prevention.pdf -------------------------------------------------------------------------------- /langs/php/docs/php_sensitive_data_exposure_prevention.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_sensitive_data_exposure_prevention.docx -------------------------------------------------------------------------------- /langs/php/docs/php_sensitive_data_exposure_prevention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_sensitive_data_exposure_prevention.pdf -------------------------------------------------------------------------------- /langs/php/docs/php_server_side_request_forgery_prevention.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_server_side_request_forgery_prevention.docx -------------------------------------------------------------------------------- /langs/php/docs/php_server_side_request_forgery_prevention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_server_side_request_forgery_prevention.pdf -------------------------------------------------------------------------------- /langs/php/docs/php_using_components_with_known_vulnerabilities_prevention.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_using_components_with_known_vulnerabilities_prevention.docx -------------------------------------------------------------------------------- /langs/php/docs/php_using_components_with_known_vulnerabilities_prevention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_using_components_with_known_vulnerabilities_prevention.pdf -------------------------------------------------------------------------------- /langs/php/docs/php_xml_external_entity_injection_prevention.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_xml_external_entity_injection_prevention.docx -------------------------------------------------------------------------------- /langs/php/docs/php_xml_external_entity_injection_prevention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/docs/php_xml_external_entity_injection_prevention.pdf -------------------------------------------------------------------------------- /langs/php/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/langs/php/index.js -------------------------------------------------------------------------------- /leaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/leaders.md -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OWASP/ASST/HEAD/package.json --------------------------------------------------------------------------------