Development
Java
Framework
Apache Maven
Run Acunetix WVS as Maven plugin in TeamCityAcunetix Web Vulnerability Scanner (WVS) is an automated web application security testing tool that audits your web applications by checking for exploitable hacking vulnerabilities. Automated scans may be supplemented and cross-checked with the variety of manual tools to allow for comprehensive web site and web application penetration testing.
Acunetix can detect some security vulnerabilities among others, click here for a list
Until now, Acunetix WVS does not support automated scanning via API's. However, Acunetix WVS supports command line, which can provide similar functionality and is an easy way to integrate Acunetix WVS with other third party applications.
The example I am providing is using Maven, and start in phase “integration-test” Acunetix against your web application. Note that running Acunetix is a costly operation, it cost CPU, take a lot of time, stress your network, so I recommend you to run it at night (3 or 4AM) so developer can a receive a feedback the day after. I have also define a Maven profile “WebappSecurityTesting” so I can trigger the check in a new Build in Jetbrains TeamCity/Atlassian Bamboo/Java Hudson with -PWebappSecurityTesting in Maven goals list.
Trivial but worth mentioning:
<profiles> <profile> <id>WebappSecurityTesting</id> <activation> <activeByDefault>false</activeByDefault> <!-- automatic activation <file> <exists>C:\acunetix\wvs_console.exe</exists> </file> --> </activation> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>integration-test</phase> <configuration> <tasks name="Run acunetix webscanner"> <exec dir="C:\acunetix" executable="wvs_console.exe" os="Windows XP" output="${basedir}/target/acunetix/result.txt"> <arg value="/Scan"/> <arg value="http://testphp.acunetix.com"/> <arg value="/Profile"/> <arg value="default"/> <arg value="/SaveToDatabase"/> <arg value="/GenerateReport"/> <arg value="${basedir}/target/acunetix"/> <arg value="/ReportFormat"/> <arg value="PDF"/> <arg value="/ReportExtraParams"/> <arg value="/r WVSComplianceReport.rep /k PCI12.xml"/> <arg value="--ScanningMode=Heuristic"/> <arg value="--UseAcuSensor=TRUE"/> <arg value="--EnablePortScanning=TRUE"/> </exec> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles>
Acunetix WVS console application can be run by running 'wvs_console.exe' from the Acunetix WVS installation directory. An example of a typical Acunetix WVS scan command including explanation, can be found below:
/Scan http://testphp.acunetix.com: Instruct the scanner to launch a single site scan against http://testphp.acunetix.com.
/Profile default: Use default profile for scanning.
/SaveToDatabase: This parameter instructs the scanner to save scan results to reporting database. If this parameter is not enabled, reports cannot be generated.
/GenerateReport "c:\reports\": Generate scan report in the path 'c:\reports'.
/ReportFormat PDF: Generate the report in PDF format.
/ReportExtraParams "/r WVSComplianceReport.rep /k PCI12.xml": Generate a PCI version1.2 compliance report (PCI12.xml) using the Compliance reporting template (WVSComplianceReport.rep).
--ScanningMode=Heuristic: This option is to instruct the scanner to use heuristic scanning mode against specified target.
--UseAcuSensor=TRUE: Use AcuSensor Technology during scan. The AcuSensor client files must be installed and configured on the target for AcuSensor Technology to function.
--EnablePortScanning=TRUE: Instruct the scanner to port scan the target as well, and run network security tests (Network Alerts) against the target.
Privacy Statement | Copyright Notice | Licenses
© 1999-2012 Waltercedric.com. Designed by Cédric Walter. Sitemap
Reproduction without explicit permission is prohibited. All Rights Reserved.
Disclaimer: The editor(s) reserve the right to edit any comments that are found to be abusive, offensive, contain profanity, serves as spam, is largely self-promotional, or displaying attempts to harbour irrelevant text links for any purpose.