Vault 7: Projects

This publication series is about specific projects related to the Vault 7 main publication.
UNCLASSIFIED
Cherry Bomb Program Cherry Blossom Internal Test Procedures
additional web servlet be compiled and installed. This is done by executing the
following:
1. Copy <CW>/src/EchoTest/EchoToFileServlet.java to
$TOMCAT_HOME/webapps/ROOT/WEB-INF/classes.
2. Compile the file, ensuring that servlet-api.jar is on the class path.
i.e. javac -classpath $TOMCAT_HOME/common/lib/servlet-api.jar
EchoToFileServlet.java.
3. Add the following to $TOMCAT_HOME/webapps/ROOT/WEB-
INF/web.xml before the closing web-app tag:
<servlet>
<servlet-name>
EchoToFileServlet
</servlet-name>
<servlet-class>
EchoToFileServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>
EchoToFileServlet
</servlet-name>
<url-pattern>
/EchoServlet
</url-pattern>
</servlet-mapping>
4. Restart Tomcat.
In this approach, the Catapult URL should be http://${TOMCAT_IP}/EchoServlet and
the catapult information will be displayed in $TOMCAT_HOME/logs/localhost.log
UNCLASSIFIED
66