├── .gitignore ├── LICENSE ├── README.md ├── pom.xml └── src └── main ├── java └── fr │ └── novia │ └── zaproxyplugin │ ├── ZAPcmdLine.java │ ├── ZAProxy.java │ ├── ZAProxyBuilder.java │ └── report │ ├── ZAPreport.java │ ├── ZAPreportCollection.java │ ├── ZAPreportHTML.java │ └── ZAPreportXML.java └── resources ├── fr └── novia │ └── zaproxyplugin │ ├── ZAPcmdLine │ ├── config.jelly │ └── help-config.html │ ├── ZAProxy │ ├── config.jelly │ ├── help-ajaxSpiderURL.html │ ├── help-ajaxSpiderURLAsUser.html │ ├── help-chosenFormats.html │ ├── help-chosenPolicy.html │ ├── help-excludedUrl.html │ ├── help-extraPostData.html │ ├── help-filenameLoadSession.html │ ├── help-filenameReports.html │ ├── help-filenameSaveSession.html │ ├── help-jdk.html │ ├── help-loggedInIndicator.html │ ├── help-loginUrl.html │ ├── help-password.html │ ├── help-passwordParameter.html │ ├── help-saveReports.html │ ├── help-saveSession.html │ ├── help-scanURL.html │ ├── help-scanURLAsUser.html │ ├── help-spiderURL.html │ ├── help-targetURL.html │ ├── help-timeoutInSec.html │ ├── help-toolUsed.html │ ├── help-username.html │ ├── help-usernameParameter.html │ ├── help-zapDefaultDir.html │ └── help-zapHome.html │ └── ZAProxyBuilder │ ├── config.jelly │ ├── global.jelly │ ├── help-startZAPFirst.html │ ├── help-zapProxyDefaultHost.html │ ├── help-zapProxyDefaultPort.html │ ├── help-zapProxyHost.html │ └── help-zapProxyPort.html └── index.jelly /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/fr/novia/zaproxyplugin/ZAPcmdLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/java/fr/novia/zaproxyplugin/ZAPcmdLine.java -------------------------------------------------------------------------------- /src/main/java/fr/novia/zaproxyplugin/ZAProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/java/fr/novia/zaproxyplugin/ZAProxy.java -------------------------------------------------------------------------------- /src/main/java/fr/novia/zaproxyplugin/ZAProxyBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/java/fr/novia/zaproxyplugin/ZAProxyBuilder.java -------------------------------------------------------------------------------- /src/main/java/fr/novia/zaproxyplugin/report/ZAPreport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/java/fr/novia/zaproxyplugin/report/ZAPreport.java -------------------------------------------------------------------------------- /src/main/java/fr/novia/zaproxyplugin/report/ZAPreportCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/java/fr/novia/zaproxyplugin/report/ZAPreportCollection.java -------------------------------------------------------------------------------- /src/main/java/fr/novia/zaproxyplugin/report/ZAPreportHTML.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/java/fr/novia/zaproxyplugin/report/ZAPreportHTML.java -------------------------------------------------------------------------------- /src/main/java/fr/novia/zaproxyplugin/report/ZAPreportXML.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/java/fr/novia/zaproxyplugin/report/ZAPreportXML.java -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAPcmdLine/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAPcmdLine/config.jelly -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAPcmdLine/help-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAPcmdLine/help-config.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/config.jelly -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-ajaxSpiderURL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-ajaxSpiderURL.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-ajaxSpiderURLAsUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-ajaxSpiderURLAsUser.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-chosenFormats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-chosenFormats.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-chosenPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-chosenPolicy.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-excludedUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-excludedUrl.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-extraPostData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-extraPostData.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-filenameLoadSession.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-filenameLoadSession.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-filenameReports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-filenameReports.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-filenameSaveSession.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-filenameSaveSession.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-jdk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-jdk.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-loggedInIndicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-loggedInIndicator.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-loginUrl.html: -------------------------------------------------------------------------------- 1 | Loggin page url. 2 | -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-password.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-passwordParameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-passwordParameter.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-saveReports.html: -------------------------------------------------------------------------------- 1 | Save reports generated by ZAProxy or not. -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-saveSession.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-saveSession.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-scanURL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-scanURL.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-scanURLAsUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-scanURLAsUser.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-spiderURL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-spiderURL.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-targetURL.html: -------------------------------------------------------------------------------- 1 | Specify an url to attack (e.g. "http://localhost:8180/bodgeit/"). -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-timeoutInSec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-timeoutInSec.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-toolUsed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-toolUsed.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-username.html: -------------------------------------------------------------------------------- 1 | User name for authentication 2 | -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-usernameParameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-usernameParameter.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-zapDefaultDir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-zapDefaultDir.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-zapHome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxy/help-zapHome.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxyBuilder/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxyBuilder/config.jelly -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxyBuilder/global.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxyBuilder/global.jelly -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxyBuilder/help-startZAPFirst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxyBuilder/help-startZAPFirst.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxyBuilder/help-zapProxyDefaultHost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/fr/novia/zaproxyplugin/ZAProxyBuilder/help-zapProxyDefaultHost.html -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxyBuilder/help-zapProxyDefaultPort.html: -------------------------------------------------------------------------------- 1 | Configure the ZAProxy port (e.g. "8090"). It can be overridden for each job. 2 | -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxyBuilder/help-zapProxyHost.html: -------------------------------------------------------------------------------- 1 | Override the ZAProxy host defined in admin mode. 2 | -------------------------------------------------------------------------------- /src/main/resources/fr/novia/zaproxyplugin/ZAProxyBuilder/help-zapProxyPort.html: -------------------------------------------------------------------------------- 1 | Override the ZAProxy port defined in admin mode. 2 | -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/zaproxy-plugin/HEAD/src/main/resources/index.jelly --------------------------------------------------------------------------------