Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OWASP Zed Attack Proxy Scan in DevOps pipeline

My requirement is do the "Authenticated Scan" by using the TFS DevOps pipeline, for this I added the "OWASP Zed Attack Proxy Scan" extension under TFS and added the tasks in pipeline. also I installed the OWASP desktop app (2.11.1), pipeline working fine with 'Unauthenticated mode' on the website, but I need to do the 'authenticated scan so that tool can identity the bugs/vulnerabilities after the login pages as well, how this can be done? enter image description here

like image 688
Saad Awan Avatar asked Apr 25 '26 14:04

Saad Awan


1 Answers

First of all, you dont need to use the ZAP desktop app - ZAP can be run in a variety of ways that are more suited to automation - see https://www.zaproxy.org/docs/automate/

Secondly, authentication can be a real pain - there are so many ways that applications handle it :( Have a look at the official ZAP videos on https://www.zaproxy.org/videos-list/ - you can search for "Auth" in the tags to narrow those down to the most relevant ones.

like image 127
Simon Bennetts Avatar answered Apr 28 '26 15:04

Simon Bennetts