This repository has been archived on 2025-02-13. You can view files and clone it, but cannot push or open issues or pull requests.
lanScan2/scan
2023-04-28 04:39:52 +02:00

12 lines
278 B
Bash
Executable File

#!/usr/bin/env bash
export DIR="$(dirname -- "$0")"
echo $DIR
conf="$1"
echo $conf
site="$(basename ${conf/.yaml/})"
echo $site
php to_XML.php "$conf" > "$DIR/site/$site.xml"
xsltproc nmap_cmd.xsl "$DIR/site/$site.xml" | sh
mv "$DIR/scans/$site.xml.tmp" "$DIR/scans/$site.xml"