Book Image

Practical Security Automation and Testing

By : Tony Hsiang-Chih Hsu
Book Image

Practical Security Automation and Testing

By: Tony Hsiang-Chih Hsu

Overview of this book

Security automation is the automatic handling of software security assessments tasks. This book helps you to build your security automation framework to scan for vulnerabilities without human intervention. This book will teach you to adopt security automation techniques to continuously improve your entire software development and security testing. You will learn to use open source tools and techniques to integrate security testing tools directly into your CI/CD framework. With this book, you will see how to implement security inspection at every layer, such as secure code inspection, fuzz testing, Rest API, privacy, infrastructure security, and web UI testing. With the help of practical examples, this book will teach you to implement the combination of automation and Security in DevOps. You will learn about the integration of security testing results for an overall security status for projects. By the end of this book, you will be confident implementing automation security in all layers of your software development stages and will be able to build your own in-house security automation platform throughout your mobile and cloud releases.
Table of Contents (19 chapters)

Approach 3 – security findings management DefectDojo

In this approach, we use several security testing tools to do security testing with XML outputs. These XML outputs will be imported into a defect management service, OWASP DefectDojo in our demonstration. The security defect management web service will help to consolidate all the testing results in one security dashboard, or even generate a summary report. Follow the steps to learn how to apply OWASP DefectDojo to manage your security findings.

Step 1 – setup the OWASP DefectDojo

To set up the OWASP DefectDojo, running the Docker image is suggested. Follow these commands to run OWASP DefectDojo. It will run a web service on port 8000:

$ docker run -it -p 8000...