PatchBot/modules/VueScan.php
2021-12-22 15:08:23 +01:00

14 lines
339 B
PHP

<?php
class VueScan extends PatchBase {
function __construct() {
parent::__construct('Hamrick Software', 'VueScan', 'https://www.hamrick.com/download.html');
}
function check() : bool {
if ($this->fetch('https://d1t4l16dpbiwrj.cloudfront.net/menu.min.js'))
return $this->parse('/var ve="([\d\.]+)";/');
return false;
}
}
?>