PatchBot/modules/Tomcat10.php
2025-02-26 17:19:57 +01:00

15 lines
364 B
PHP

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