separate confs and scans

This commit is contained in:
2023-04-07 02:34:42 +02:00
parent 7592b803fb
commit d3b5a014e1
7 changed files with 12 additions and 11 deletions

View File

@ -2,8 +2,8 @@
$site = filter_input(INPUT_GET, "site", FILTER_SANITIZE_STRING);
$site = escapeshellcmd($site);
if ($site and file_exists("scans/$site.yaml") and file_exists("scans/$site.xml")) {
$conf = yaml_parse_file("scans/$site.yaml");
if ($site and file_exists("confs/$site.yaml") and file_exists("scans/$site.xml")) {
$conf = yaml_parse_file("confs/$site.yaml");
$scan = simplexml_load_file("scans/$site.xml");
require("results.php");
} else {