PatchBot/modules/Tomcat9.php
2025-02-26 17:20:04 +01:00

15 lines
362 B
PHP

<?php
class Tomcat9 extends PatchBase {
function __construct() {
parent::__construct('Apache Foundation', 'Tomcat', 'https://tomcat.apache.org/download-90.cgi');
$this->patch->setBranch('9');
}
function check() : bool {
if ($this->fetch('https://tomcat.apache.org/download-90.cgi'))
return $this->parse('/id="([\d\.]+)"/');
return false;
}
}
?>