Add Zed Attack Proxy

This commit is contained in:
Steffen Lange 2025-02-26 16:58:22 +01:00
parent 1f6814cdf3
commit 30937d14b8

14
modules/ZAP.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class ZAP extends PatchBase {
function __construct() {
parent::__construct('ZAP Dev Team', 'Zed Attack Proxy', 'https://www.zaproxy.org/download/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/zaproxy/zaproxy/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>