Deploying AcuSensor agent for Java - Ubuntu Linux in Acunetix 360

You can use AcuSensor to carry out interactive security testing (IAST) in your web application to confirm more vulnerabilities and further minimize false positives.  

For AcuSensor to operate, you need to download an agent and deploy it on your server. Please note that this agent is generated uniquely for each target website for security reasons.

This topic explains how to download and deploy AcuSensor to a Java web application.

if_Gnome-Dialog-Information-64_55568.png

Information

AcuSensor for Java requires Tomcat (7+) and Java (1.7+). Current testing is with Tomcat 9 and Java 1.8.


This document assumes that you will be using version 1.9.5 (latest at the time of writing) of AspectJWeaver. And, you need to configure your web server to use Load Time Weaving (AspectJWeaver)


Also, you will be using regular repositories for Ubuntu Linux.

Deploying AcuSensor in Java consists of 3 steps:

  1. Deploying AspectJWeaver into your web application

  1. Open a terminal
  2. Run the following command: sudo apt install libaspectj-java
  1. Deploying AcuSensor into your web application

  1. Download the Acunetix Java AcuSensor
  2. Copy AcuSensor (AcuSensor.jar) to %TOMCAT-HOME%\lib
  • If deploying to Ubuntu 18.04.3 where Tomcat 9 was installed using the regular Ubuntu repositories to install tomcat and needed components (sudo apt install tomcat9 libaspectj-java),  copy the AcuSensor.jar file to /usr/share/tomcat9/lib
  1. Configure Tomcat to use AspectJWeaver and AcuSensor

3.1. Launch Tomcat with Load Time Weaving enabled. This can be done by adding a -javaagent parameter with the path to aspectjweaver.jar when launching Tomcat, and optionally a parameter to enable AcuSensor debug logging

  • For Ubuntu 18.04.3 where Tomcat 9 was installed using the regular Ubuntu repositories to install tomcat and needed components (sudo apt install tomcat9 libaspectj-java), add two parameters into the Tomcat setenv.sh script (normally you will be creating a new file):
  • Run the command: sudo nano/usr/share/tomcat9/bin/setenv.sh
  • At the end of the file, add the line: JAVA_OPTS="$JAVA_OPTS -javaagent:/usr/share/java/aspectjweaver.jar -Dacusensor.debug.log=ON"
  • Save the file
  • Run sudo systemctl restart tomcat9

if_Gnome-Dialog-Information-64_55568.png

Information

The parameter "-Dacusensor.debug.log=ON" is optional and should ONLY be used for troubleshooting purposes. If this parameter is retained, this will output Acusensor logging as additional lines in the Tomcat logs starting with "[Acunetix-debug]".

Disabling and Removing AcuSensor for JAVA

To remove and disable the sensor from your website, you need to revert the changes done during the deployment of the Agent:

  • Remove the AcuSensor (acusensor.jar) from the folder where it was deployed. In the case of Ubuntu 18.04.3 where Tomcat 9 was installed using the regular Ubuntu repositories to install tomcat and needed components (sudo apt install tomcat9 libaspectj-java), remove the acusensor.jar file by running the command: rm /usr/share/tomcat9/lib/acusensor.jar

  • Remove aspectjweaver.jar by running the command: sudo apt remove libaspectj-java

  • Reconfigure Tomcat with Load Time Weaving disabled:
  • Under Ubuntu 18.04.3 this can be done as follows:
  • remove the "JAVA_OPTS" line added earlier in the setenv.sh file
  • run the command: sudo systemctl restart tomcat9

if_Gnome-Dialog-Information-64_55568.png

Information

Although the AcuSensor agent is secured with a strong password, it is recommended that the AcuSensor client files are uninstalled and removed from the web application if they are no longer in use.


 
« Back to the Acunetix Support Page