For this recipe, we will use the following application and tools:
- Jenkins: This is an open source build automation server that can be customized to run quality and security code analysis. Jenkins can be downloaded via the following link https://jenkins.io/download/. There are various ways to install Jenkins depending on the operating system. For Debian and Ubuntu, the following commands can be used to install Jenkins:
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
- Add the following line to /etc/apt/sources.list:
deb https://pkg.jenkins.io/debian-stable binary/
sudo apt-get update
sudo apt-get install jenkins
- Fuzzgoat: This is a vulnerable C program that can be downloaded via the ...