Compare commits
22 Commits
7790369ac1
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| b445d08ce1 | |||
| e2c1c6604e | |||
| a593148c38 | |||
| d45b05941f | |||
| e423273752 | |||
| 0c72ceb620 | |||
| dc8fa57c0f | |||
| 53679e2098 | |||
| 8cd0ba066f | |||
| 602c1fc7f3 | |||
| 06eb33187b | |||
| 43d2df7850 | |||
| 9d7f526080 | |||
| 80dc329353 | |||
| 81652e25c9 | |||
| 4e14da1860 | |||
| 8e5f010da0 | |||
| df4648e12a | |||
| 154d731e55 | |||
| 2ef0421078 | |||
| f2acc56ef7 | |||
| 1d5bb5446d |
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,4 +1,3 @@
|
|||||||
scans/
|
scans/
|
||||||
scripts/smb-authentication.ini
|
datadir/script-args.ini
|
||||||
test.php
|
test.php
|
||||||
server.php
|
|
||||||
21
config.php
21
config.php
@ -1,19 +1,22 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
$port = (($_SERVER['REQUEST_SCHEME'] == "http" && $_SERVER['SERVER_PORT'] == 80) || ($_SERVER['REQUEST_SCHEME'] == "https" && $_SERVER['SERVER_PORT'] == 443)) ? "" : ":{$_SERVER['SERVER_PORT']}";
|
$port = (($_SERVER['REQUEST_SCHEME'] == "http" && $_SERVER['SERVER_PORT'] == 80) || ($_SERVER['REQUEST_SCHEME'] == "https" && $_SERVER['SERVER_PORT'] == 443)) ? "" : ":{$_SERVER['SERVER_PORT']}";
|
||||||
$BASEDIR = "{$_SERVER['REQUEST_SCHEME']}://{$_SERVER['SERVER_NAME']}$port" . dirname($_SERVER['SCRIPT_NAME']);
|
$BASEDIR = "{$_SERVER['REQUEST_SCHEME']}://{$_SERVER['SERVER_NAME']}$port" . dirname($_SERVER['SCRIPT_NAME']);
|
||||||
$SCANSDIR = 'scans';
|
$SCANSDIR = 'scans';
|
||||||
$NMAPDIR = dirname(`which nmap`) . "/../share/nmap";
|
$TEMPLATESDIR = "templates";
|
||||||
$DATADIR = "datadir";
|
$NMAP = 'sudo nmap'; # nmap command, E.g. 'nmap', 'sudo nmap' for root privileges or '/usr/bin/nmap' if not in PATH
|
||||||
|
$NMAPDIR = dirname(`which nmap`) . "/../share/nmap";
|
||||||
|
$DATADIR = ".";
|
||||||
|
$SCRIPTARGS = "script-args.ini";
|
||||||
|
|
||||||
$presets = [
|
$presets = [
|
||||||
"default" => [
|
"default" => [
|
||||||
'-PS' => 'microsoft-ds',
|
'-PS' => 'microsoft-ds',
|
||||||
'-F' => true,
|
'-F' => true,
|
||||||
'-T' => 5,
|
'-T' => 5,
|
||||||
'--stylesheet' => "$BASEDIR/templates/lanScan.xsl",
|
'--stylesheet' => "lanScan",
|
||||||
'refreshPeriod' => 60,
|
'refreshPeriod' => 60,
|
||||||
'sudo' => false,
|
#'sudo' => false,
|
||||||
],
|
],
|
||||||
"host" => [
|
"host" => [
|
||||||
'-Pn' => true,
|
'-Pn' => true,
|
||||||
@ -21,8 +24,8 @@ $presets = [
|
|||||||
'-sV' => true,
|
'-sV' => true,
|
||||||
'-T' => 5,
|
'-T' => 5,
|
||||||
'--script' => "http-info,smb-shares-size",
|
'--script' => "http-info,smb-shares-size",
|
||||||
'--stylesheet' => "$BASEDIR/templates/hostScan.xsl",
|
'--stylesheet' => "hostScan",
|
||||||
'refreshPeriod' => 60,
|
'refreshPeriod' => 60,
|
||||||
'sudo' => true,
|
#'sudo' => true,
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|||||||
@ -1,3 +0,0 @@
|
|||||||
smbdomain =
|
|
||||||
smbuser =
|
|
||||||
smbpassword =
|
|
||||||
@ -10,7 +10,7 @@ $tempoRegex = '/^\d+[smh]?$/';
|
|||||||
$fileNameRegex = '/^[^<>:\/|?]+$/';
|
$fileNameRegex = '/^[^<>:\/|?]+$/';
|
||||||
|
|
||||||
$targets = filter_input(INPUT_GET, 'targets', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => $targetsListRegex], "flags" => FILTER_NULL_ON_FAILURE]);
|
$targets = filter_input(INPUT_GET, 'targets', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => $targetsListRegex], "flags" => FILTER_NULL_ON_FAILURE]);
|
||||||
$preset = filter_input(INPUT_GET, "preset");
|
$preset = filter_input(INPUT_GET, "preset", FILTER_SANITIZE_STRING);
|
||||||
|
|
||||||
if ($preset && isset($presets[$preset])) {
|
if ($preset && isset($presets[$preset])) {
|
||||||
$options = $presets[$preset];
|
$options = $presets[$preset];
|
||||||
@ -107,9 +107,9 @@ if ($preset && isset($presets[$preset])) {
|
|||||||
'-V' => FILTER_VALIDATE_BOOLEAN,
|
'-V' => FILTER_VALIDATE_BOOLEAN,
|
||||||
'--unprivileged' => FILTER_VALIDATE_BOOLEAN,
|
'--unprivileged' => FILTER_VALIDATE_BOOLEAN,
|
||||||
'-h' => FILTER_VALIDATE_BOOLEAN,
|
'-h' => FILTER_VALIDATE_BOOLEAN,
|
||||||
'--stylesheet' => FILTER_VALIDATE_URL,
|
'--stylesheet' => ['filter' => FILTER_VALIDATE_REGEXP, 'options' => ['regexp' => $fileNameRegex]],
|
||||||
// lanScan
|
// lanScan
|
||||||
'saveAs' => ['filter' => FILTER_VALIDATE_REGEXP, 'options' => ['regexp' => $fileNameRegex]],
|
'name' => ['filter' => FILTER_VALIDATE_REGEXP, 'options' => ['regexp' => $fileNameRegex]],
|
||||||
'originalURL' => FILTER_VALIDATE_URL,
|
'originalURL' => FILTER_VALIDATE_URL,
|
||||||
'refreshPeriod' => ['filter' => FILTER_VALIDATE_INT, 'options' => ['min_range' => 0]],
|
'refreshPeriod' => ['filter' => FILTER_VALIDATE_INT, 'options' => ['min_range' => 0]],
|
||||||
'sudo' => FILTER_VALIDATE_BOOLEAN,
|
'sudo' => FILTER_VALIDATE_BOOLEAN,
|
||||||
@ -117,6 +117,7 @@ if ($preset && isset($presets[$preset])) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$options["--datadir"] = $DATADIR;
|
$options["--datadir"] = $DATADIR;
|
||||||
|
$options["--script-args-file"] = $SCRIPTARGS;
|
||||||
|
|
||||||
/*echo "<!--";
|
/*echo "<!--";
|
||||||
var_dump($options);
|
var_dump($options);
|
||||||
|
|||||||
79
index.php
79
index.php
@ -170,10 +170,7 @@ Exemples: <?= $_SERVER['REMOTE_ADDR']; ?>/24 <?= $_SERVER['SERVER_NAME']; ?> 10.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title"><i class="icon dropdown"></i>Techniques de scan de ports</div>
|
||||||
<i class="icon dropdown"></i>
|
|
||||||
Techniques de scan de ports
|
|
||||||
</div>
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<div class="fields">
|
<div class="fields">
|
||||||
@ -269,10 +266,7 @@ Exemples: <?= $_SERVER['REMOTE_ADDR']; ?>/24 <?= $_SERVER['SERVER_NAME']; ?> 10.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title"><i class="icon dropdown"></i>Spécifications des ports et ordre du scan</div>
|
||||||
<i class="icon dropdown"></i>
|
|
||||||
Spécifications des ports et ordre du scan
|
|
||||||
</div>
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="inline field">
|
<div class="inline field">
|
||||||
<div class="ui toggle checkbox" title="-sP">
|
<div class="ui toggle checkbox" title="-sP">
|
||||||
@ -569,6 +563,12 @@ Exemples: <?= $_SERVER['REMOTE_ADDR']; ?>/24 <?= $_SERVER['SERVER_NAME']; ?> 10.
|
|||||||
value="<?= $options["--max-scan-delay"] ?? "" ?>">
|
value="<?= $options["--max-scan-delay"] ?? "" ?>">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="inline field">
|
||||||
|
<div class="ui toggle checkbox">
|
||||||
|
<input id="defeatRSTRateLimitCheckbox" type="checkbox" name="--defeat-rst-ratelimit" <?= $options['--defeat-rst-ratelimit'] ?? false ? 'checked' : ''; ?> />
|
||||||
|
<label for="defeatRSTRateLimitCheckbox" title="--defeat-rst-ratelimit">Ignorer les limitations de paquets RST</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="title"><i class="icon dropdown"></i>Divers</div>
|
<div class="title"><i class="icon dropdown"></i>Divers</div>
|
||||||
@ -577,14 +577,14 @@ Exemples: <?= $_SERVER['REMOTE_ADDR']; ?>/24 <?= $_SERVER['SERVER_NAME']; ?> 10.
|
|||||||
<label for="stylesheetSelect" title="--stylesheet">Feuille de style</label>
|
<label for="stylesheetSelect" title="--stylesheet">Feuille de style</label>
|
||||||
<select id="stylesheetSelect" class="ui dropdown" name="--stylesheet" value="<?= $options["--stylesheet"] ?? ""?>">
|
<select id="stylesheetSelect" class="ui dropdown" name="--stylesheet" value="<?= $options["--stylesheet"] ?? ""?>">
|
||||||
<?php
|
<?php
|
||||||
foreach (scandir('templates') as $filename) {
|
foreach (scandir($TEMPLATESDIR) as $filename) {
|
||||||
if (substr($filename, -4) === '.xsl') {
|
if (substr($filename, -4) === '.xsl') {
|
||||||
$name = substr($filename, 0, -4);
|
$name = substr($filename, 0, -4);
|
||||||
$URL = "$BASEDIR/templates/".rawurlencode($filename);
|
#$URL = rawurlencode($filename);
|
||||||
if (isset($options["--stylesheet"]) && $URL == $options["--stylesheet"]) {
|
if (isset($options["--stylesheet"]) && $name == $options["--stylesheet"]) {
|
||||||
echo " <option value='$URL' selected>$name</option>\n";
|
echo " <option value='$name' selected>$name</option>\n";
|
||||||
} else {
|
} else {
|
||||||
echo " <option value='$URL'>$name</option>\n";
|
echo " <option value='$name'>$name</option>\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -593,19 +593,19 @@ foreach (scandir('templates') as $filename) {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="originalURLSelect">Comparer avec un précédent scan</label>
|
<label for="originalSelect">Comparer avec un précédent scan</label>
|
||||||
<select id="originalURLSelect" class="ui clearable dropdown" name="originalURL" value="<?= $options["originalURL"] ?? "" ?>">
|
<select id="originalSelect" class="ui clearable dropdown" name="original" value="<?= $options["original"] ?? "" ?>">
|
||||||
<option value="">Précédent scan</option>
|
<option value="">Précédent scan</option>
|
||||||
<?php
|
<?php
|
||||||
if (!file_exists($SCANSDIR)) mkdir($SCANSDIR);
|
if (!file_exists($SCANSDIR)) mkdir($SCANSDIR);
|
||||||
foreach (scandir($SCANSDIR) as $filename) {
|
foreach (scandir($SCANSDIR) as $filename) {
|
||||||
if (substr($filename, -4) === '.xml') {
|
if (substr($filename, -4) === '.xml') {
|
||||||
$name = substr($filename, 0, -4);
|
$name = substr($filename, 0, -4);
|
||||||
$URL = "$BASEDIR/$SCANSDIR/".rawurlencode($filename);
|
#$URL = "$BASEDIR/$SCANSDIR/".rawurlencode($filename);
|
||||||
if (isset($options["originalURL"]) && $URL == $options["originalURL"]) {
|
if (isset($options["original"]) && $name == $options["original"]) {
|
||||||
echo " <option value='$URL' selected>$name</option>\n";
|
echo " <option value='$name' selected>$name</option>\n";
|
||||||
} else {
|
} else {
|
||||||
echo " <option value='$URL'>$name</option>\n";
|
echo " <option value='$name'>$name</option>\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -621,43 +621,39 @@ foreach (scandir($SCANSDIR) as $filename) {
|
|||||||
<div class="ui label">secondes</div>
|
<div class="ui label">secondes</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<!--
|
||||||
<div class="inline field">
|
<div class="inline field">
|
||||||
<div class="ui toggle checkbox">
|
<div class="ui toggle checkbox">
|
||||||
<input id="sudoCheckbox" type="checkbox" name="sudo" <?= $options["sudo"] ?? false ? 'checked' : ''; ?>/>
|
<input id="sudoCheckbox" type="checkbox" name="sudo" <?= $options["sudo"] ?? false ? 'checked' : ''; ?>/>
|
||||||
<label for="sudoCheckbox" title="sudo">Exécuter en tant qu'administrateur</label>
|
<label for="sudoCheckbox" title="sudo">Exécuter en tant qu'administrateur</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
-->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label for="saveAsInput">Enregistrer sous le nom</label>
|
<label for="nameInput">Enregistrer sous le nom</label>
|
||||||
<input id="saveAsInput" type="text" name="saveAs" placeholder="Réseau local" pattern='[^<>:"\\\/\|@?]+'
|
<input id="nameInput" type="text" name="name" placeholder="Réseau local" pattern='[^<>:"\\\/\|@?]+'
|
||||||
title="Caractères interdits : <>:"\/|@?"
|
title="Caractères interdits : <>:"\/|@?"
|
||||||
value="<?= $options["saveAs"] ?? ""; ?>">
|
value="<?= $options["name"] ?? ""; ?>">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button type="submit" class="ui teal submit button">Démarrer</button>
|
<button type="submit" class="ui teal submit button">Démarrer</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<h2 class="ui header">Scans enregistrés</h1>
|
<h2 class="ui header">Scans enregistrés</h2>
|
||||||
<div class="ui large relaxed card">
|
<div class="ui link list">
|
||||||
<div class="content">
|
<?php
|
||||||
<div class="ui divided link list">
|
if (file_exists($SCANSDIR)) {
|
||||||
<?php
|
foreach (scandir($SCANSDIR) as $filename) {
|
||||||
if (!file_exists($SCANSDIR)) {
|
if (substr($filename, -4) == '.xml') {
|
||||||
mkdir($SCANSDIR);
|
$name = str_replace('!', '/', substr_replace($filename, '', -4));
|
||||||
}
|
echo "<a class='item' href='$SCANSDIR/".rawurlencode($filename)."'>$name</a>\n";
|
||||||
foreach (scandir($SCANSDIR) as $filename) {
|
}
|
||||||
if (substr($filename, -4) == '.xml') {
|
|
||||||
$name = str_replace('!', '/', substr_replace($filename, '', -4));
|
|
||||||
echo "<a class='item' href='$SCANSDIR/".rawurlencode($filename)."'>$name</a>\n";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
@ -767,6 +763,15 @@ foreach ([$DATADIR, $NMAPDIR] as $dir) {
|
|||||||
newScanForm.onsubmit = function(event) {
|
newScanForm.onsubmit = function(event) {
|
||||||
if (this.checkValidity()) {
|
if (this.checkValidity()) {
|
||||||
newScanForm.classList.add("loading")
|
newScanForm.classList.add("loading")
|
||||||
|
$.toast({
|
||||||
|
title : 'Scan en cours...',
|
||||||
|
message : 'Merci de patienter',
|
||||||
|
class : 'info',
|
||||||
|
showIcon : 'satellite dish',
|
||||||
|
displayTime: 0,
|
||||||
|
closeIcon : true,
|
||||||
|
position : 'bottom right',
|
||||||
|
})
|
||||||
return true
|
return true
|
||||||
} else {
|
} else {
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
|
|||||||
@ -16,7 +16,7 @@
|
|||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<nav class="ui inverted teal fixed menu">
|
<nav class="ui inverted teal menu">
|
||||||
<a class="ui teal button item" href=".">
|
<a class="ui teal button item" href=".">
|
||||||
lan<?php include 'logo.svg'; ?>can
|
lan<?php include 'logo.svg'; ?>can
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
57
scan.php
57
scan.php
@ -3,9 +3,18 @@
|
|||||||
include_once 'config.php';
|
include_once 'config.php';
|
||||||
include_once 'filter_inputs.php';
|
include_once 'filter_inputs.php';
|
||||||
|
|
||||||
if (!file_exists($SCANSDIR)) mkdir($SCANSDIR);
|
$options["--stylesheet"] = "$BASEDIR/$TEMPLATESDIR/${options["--stylesheet"]}.xsl#";
|
||||||
|
if (isset($options["name"])) {
|
||||||
|
$options["--stylesheet"] .= "name=" . rawurlencode($options["name"]) . "&";
|
||||||
|
}
|
||||||
|
if (isset($options["original"])) {
|
||||||
|
$options["--stylesheet"] .= "original=" . rawurlencode($options["original"]) . "&";
|
||||||
|
}
|
||||||
|
if (isset($options["refreshPeriod"])) {
|
||||||
|
$options["--stylesheet"] .= "refreshPeriod={$options["refreshPeriod"]}&";
|
||||||
|
}
|
||||||
|
|
||||||
$command = ($options["sudo"]?? false ? "sudo " : "") . "nmap";
|
$args = "";
|
||||||
foreach ($options as $option => $value) {
|
foreach ($options as $option => $value) {
|
||||||
if (substr($option, 0, 1) == '-') {
|
if (substr($option, 0, 1) == '-') {
|
||||||
if (is_null($value)) {
|
if (is_null($value)) {
|
||||||
@ -15,47 +24,25 @@ foreach ($options as $option => $value) {
|
|||||||
die();
|
die();
|
||||||
} else if ($value) {
|
} else if ($value) {
|
||||||
if ($value === true) {
|
if ($value === true) {
|
||||||
$command .= " $option";
|
$args .= " $option";
|
||||||
} else {
|
} else {
|
||||||
if (substr($option, 0, 2) == '--') $command .= " $option " . escapeshellarg($value);
|
if (substr($option, 0, 2) == '--') $args .= " $option " . escapeshellarg($value);
|
||||||
else $command .= " $option" . escapeshellarg($value);
|
else $args .= " $option" . escapeshellarg($value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$tempPath = tempnam(sys_get_temp_dir(), 'scan_').".xml";
|
|
||||||
|
|
||||||
$command .= " -oX '$tempPath' $targets 2>&1";
|
$command = "$NMAP $args -oX - $targets";
|
||||||
|
|
||||||
exec($command, $stderr, $retcode);
|
if (isset($options["name"])) {
|
||||||
|
if (!file_exists($SCANSDIR)) mkdir($SCANSDIR);
|
||||||
if ($retcode) {
|
$path = "$SCANSDIR/{$options["name"]}.xml";
|
||||||
http_response_code(500);
|
$command .= " | tee '$path'";
|
||||||
$errorMessage = implode("<br/>\n", $stderr);
|
|
||||||
include_once ".";
|
|
||||||
die();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$xml = new DOMDocument();
|
header('Content-type: text/xml');
|
||||||
$xml->load($tempPath);
|
system($command, $retcode);
|
||||||
`rm "$tempPath"`;
|
|
||||||
|
|
||||||
$thisURL = $options["saveAs"]?? false ? "$BASEDIR/$SCANSDIR/".rawurlencode($options["saveAs"]).".xml" : "";
|
exit();
|
||||||
$xml->insertBefore($xml->createProcessingInstruction('xslt-param', "name='thisURL' value='".htmlentities($thisURL, ENT_QUOTES)."'"), $xml->documentElement);
|
|
||||||
foreach ($options as $option => $value) {
|
|
||||||
if (substr($option, 0, 1) != '-') {
|
|
||||||
$xml->insertBefore($xml->createProcessingInstruction('xslt-param', "name='$option' value='".htmlentities($value, ENT_QUOTES)."'"), $xml->documentElement);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($options["saveAs"] ?? false) {
|
|
||||||
$path = "$SCANSDIR/{$options["saveAs"]}.xml";
|
|
||||||
$xml->save($path);
|
|
||||||
|
|
||||||
header("Location: $path");
|
|
||||||
exit();
|
|
||||||
} else {
|
|
||||||
header('Content-type: text/xml');
|
|
||||||
exit($xml->saveXML());
|
|
||||||
}
|
|
||||||
|
|||||||
0
script-args.ini
Normal file
0
script-args.ini
Normal file
@ -23,7 +23,7 @@ categories = {"discovery", "intrusive"}
|
|||||||
author = "Adrien Malingrey"
|
author = "Adrien Malingrey"
|
||||||
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
|
||||||
|
|
||||||
portrule = shortport.service({"http", "https", "ssl"})
|
portrule = shortport.http
|
||||||
|
|
||||||
local http = require "http"
|
local http = require "http"
|
||||||
local stdnse = require "stdnse"
|
local stdnse = require "stdnse"
|
||||||
@ -32,28 +32,28 @@ action = function(host, port)
|
|||||||
local scheme = ""
|
local scheme = ""
|
||||||
local hostaddress = (host.name ~= '' and host.name) or host.ip
|
local hostaddress = (host.name ~= '' and host.name) or host.ip
|
||||||
local path = "/"
|
local path = "/"
|
||||||
local uri
|
|
||||||
local favicon_relative_uri = "/favicon.ico"
|
local favicon_relative_uri = "/favicon.ico"
|
||||||
local favicon
|
local favicon
|
||||||
|
|
||||||
|
stdnse.debug1("port", port.service)
|
||||||
if (port.service == "ssl") then
|
if (port.service == "ssl") then
|
||||||
scheme = "https"
|
scheme = "https"
|
||||||
else
|
else
|
||||||
scheme = port.service
|
scheme = port.service
|
||||||
end
|
end
|
||||||
|
stdnse.debug1("scheme", scheme)
|
||||||
|
|
||||||
if(stdnse.get_script_args('http-get.path')) then
|
if(stdnse.get_script_args('http-get.path')) then
|
||||||
path = stdnse.get_script_args('http-info.path')
|
path = stdnse.get_script_args('http-info.path')
|
||||||
end
|
end
|
||||||
|
|
||||||
uri = scheme.."://"..hostaddress..":"..port.number..path
|
stdnse.debug1("Try to download %s", path)
|
||||||
stdnse.debug1("Try to download %s", uri)
|
local answer = http.get(hostaddress, port, path)
|
||||||
local answer = http.get_url(uri, {})
|
|
||||||
|
|
||||||
local output = {status=answer.status, ["status-line"]=answer["status-line"]}
|
local output = {status=answer.status, ["status-line"]=answer["status-line"]}
|
||||||
|
|
||||||
if (answer and answer.status == 200) then
|
if (answer and answer.status == 200) then
|
||||||
stdnse.debug1("[SUCCESS] Load page %s", uri)
|
stdnse.debug1("[SUCCESS] Load page %s", path)
|
||||||
-- Taken from http-title.nse by Diman Todorov
|
-- Taken from http-title.nse by Diman Todorov
|
||||||
local title = string.match(answer.body, "<[Tt][Ii][Tt][Ll][Ee][^>]*>([^<]*)</[Tt][Ii][Tt][Ll][Ee]>")
|
local title = string.match(answer.body, "<[Tt][Ii][Tt][Ll][Ee][^>]*>([^<]*)</[Tt][Ii][Tt][Ll][Ee]>")
|
||||||
if (title) then
|
if (title) then
|
||||||
@ -62,17 +62,16 @@ action = function(host, port)
|
|||||||
stdnse.debug1("[INFO] Try favicon %s", favicon_relative_uri)
|
stdnse.debug1("[INFO] Try favicon %s", favicon_relative_uri)
|
||||||
favicon_relative_uri = parseIcon(answer.body) or favicon_relative_uri
|
favicon_relative_uri = parseIcon(answer.body) or favicon_relative_uri
|
||||||
else
|
else
|
||||||
stdnse.debug1("[ERROR] Can't load page %s", uri)
|
stdnse.debug1("[ERROR] Can't load page %s", path)
|
||||||
end
|
end
|
||||||
|
|
||||||
favicon_absolute_uri = scheme.."://"..hostaddress..":"..port.number..favicon_relative_uri
|
favicon = http.get(hostaddress, port, favicon_relative_uri)
|
||||||
favicon = http.get_url(favicon_absolute_uri, {})
|
|
||||||
|
|
||||||
if (favicon and favicon.status == 200) then
|
if (favicon and favicon.status == 200) then
|
||||||
stdnse.debug1("[SUCCESS] Load favicon %s", favicon_absolute_uri)
|
stdnse.debug1("[SUCCESS] Load favicon %s", favicon_relative_uri)
|
||||||
output.favicon = favicon_absolute_uri
|
output.favicon = favicon_relative_uri
|
||||||
else
|
else
|
||||||
stdnse.debug1("[ERROR] Can't load favicon %s", favicon_absolute_uri)
|
stdnse.debug1("[ERROR] Can't load favicon %s", favicon_relative_uri)
|
||||||
end
|
end
|
||||||
|
|
||||||
return output
|
return output
|
||||||
@ -203,4 +203,4 @@ function receive_transaction2(smbstate)
|
|||||||
response['data'] = function_data
|
response['data'] = function_data
|
||||||
|
|
||||||
return true, response
|
return true, response
|
||||||
end
|
end
|
||||||
3
server.php
Normal file
3
server.php
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
print_r($_SERVER);
|
||||||
96
style.css
96
style.css
@ -1,74 +1,106 @@
|
|||||||
svg {
|
:root{
|
||||||
margin: -.3em -.5em -.5em -.4em;
|
--nav-height: 3.6rem;
|
||||||
fill: currentColor;
|
--footer-height: 3.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav {
|
||||||
|
height: var(--nav-height);
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
padding-top: 7em;
|
padding-top: var(--nav-height);
|
||||||
min-height: calc(100vh - 4.4285em - 2px);
|
min-height: calc(100vh - var(--footer-height) - 1rem)
|
||||||
|
}
|
||||||
|
|
||||||
|
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, .ui.header:first-child {
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
svg {
|
||||||
|
margin: -0.3em -0.5em -0.5em -0.4em;
|
||||||
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui.footer.segment {
|
.ui.footer.segment {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tagify {
|
.tagify {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-radius: .28571429rem;
|
border-radius: 0.28571429rem;
|
||||||
--tags-focus-border-color: #85b7d9;
|
--tags-focus-border-color: #85b7d9;
|
||||||
--placeholder-color: rgba(191,191,191,.87);
|
--placeholder-color: rgba(191, 191, 191, 0.87);
|
||||||
--placeholder-color-focus: rgba(115,115,115,.87);
|
--placeholder-color-focus: rgba(115, 115, 115, 0.87);
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui.table {
|
.ui.table {
|
||||||
caption-side: bottom;
|
caption-side: bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui.label {
|
.ui.label {
|
||||||
margin: .14285714em;
|
margin: 0.14285714em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui.label > .detail {
|
.ui.label > .detail {
|
||||||
margin-left: .3em;
|
margin-left: 0.3em;
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui.form .fields > .field {
|
.ui.form .fields > .field {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui.ui.form .field .fields .field:not(:only-child) .ui.checkbox {
|
.ui.ui.form .field .fields .field:not(:only-child) .ui.checkbox {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui.dropdown.label {
|
.ui.dropdown.label {
|
||||||
min-width: auto;
|
min-width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui.dropdown.label> .remove.icon {
|
.ui.dropdown.label > .remove.icon {
|
||||||
right: 2.3em;
|
right: 2.3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.toast-container .ui.header {
|
.toast-container .ui.header {
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
}
|
}
|
||||||
|
|
||||||
.share-size {
|
.share-size {
|
||||||
--free-ratio: calc(var(--free) / var(--total));
|
--free-ratio: calc(var(--free) / var(--total));
|
||||||
--used-percent: calc(100% - 100%*var(--free-ratio));
|
--used-percent: calc(100% - 100% * var(--free-ratio));
|
||||||
--color: hsl(calc(120*var(--free-ratio)) 100% 50%);
|
--color: hsl(calc(120 * var(--free-ratio)) 100% 50%);
|
||||||
background-image: linear-gradient(to right, var(--color) var(--used-percent), transparent var(--used-percent), transparent) !important;
|
background-image: linear-gradient(
|
||||||
}
|
to right,
|
||||||
|
var(--color) var(--used-percent),
|
||||||
.compact .ui.icon.buttons .mini.button {
|
transparent var(--used-percent),
|
||||||
padding: 0.5em;
|
transparent
|
||||||
|
) !important;
|
||||||
|
text-align: center !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.compact {
|
.compact {
|
||||||
overflow-x: scroll;
|
position: static !important;
|
||||||
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.compact > input{
|
.compact > input {
|
||||||
min-width: 10em;
|
min-width: 10em;
|
||||||
padding-right: .1em;
|
padding-right: 0.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.compact .ui.buttons .mini.button {
|
||||||
|
padding: 0.5em;
|
||||||
|
position: static;
|
||||||
|
}
|
||||||
|
|
||||||
|
.compact .ui.dropdown.button:not(.pointing):not(.floating).active {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.compact .ui.dropdown .menu {
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
margin: -.7em .7em;
|
||||||
|
min-width: auto;
|
||||||
|
}
|
||||||
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<xsl:import href="lib/head.xsl"/>
|
<xsl:import href="lib/head.xsl"/>
|
||||||
<xsl:import href="lib/nav.xsl"/>
|
<xsl:import href="lib/nav.xsl"/>
|
||||||
<xsl:import href="lib/serviceLabel.xsl"/>
|
<xsl:import href="lib/service.xsl"/>
|
||||||
<xsl:import href="lib/toast.xsl"/>
|
<xsl:import href="lib/toast.xsl"/>
|
||||||
|
|
||||||
<xsl:output method="html" encoding="UTF-8"/>
|
<xsl:output method="html" encoding="UTF-8"/>
|
||||||
@ -19,7 +19,7 @@
|
|||||||
<xsl:param name="sudo" select="false"/>
|
<xsl:param name="sudo" select="false"/>
|
||||||
|
|
||||||
<xsl:variable name="current" select="./nmaprun"/>
|
<xsl:variable name="current" select="./nmaprun"/>
|
||||||
<xsl:variable name="stylesheetURL" select="substring-before(substring-after(processing-instruction('xml-stylesheet'),'href="'),'"')"/>
|
<xsl:variable name="stylesheetURL" select="substring-before(substring-after(processing-instruction('xml-stylesheet'),'href="'), '?')"/>
|
||||||
<xsl:variable name="basedir" select="concat($stylesheetURL, '/../..')"/>
|
<xsl:variable name="basedir" select="concat($stylesheetURL, '/../..')"/>
|
||||||
<xsl:variable name="init" select="document($originalURL)/nmaprun"/>
|
<xsl:variable name="init" select="document($originalURL)/nmaprun"/>
|
||||||
<xsl:variable name="nextComparison">
|
<xsl:variable name="nextComparison">
|
||||||
@ -152,10 +152,11 @@ function hostScanning(link) {
|
|||||||
</xsl:if>
|
</xsl:if>
|
||||||
</div>
|
</div>
|
||||||
<div class="description">
|
<div class="description">
|
||||||
<xsl:apply-templates select="$currentHost/ports/port | $initHost/ports/port[not(@portid=$currentHost/ports/port/@portid)][not(state/@state='closed')]">
|
<xsl:apply-templates select="$currentHost/ports/port | $initHost/ports/port[not(@portid=$currentHost/ports/port/@portid)][not(state/@state='closed')]" mode="service">
|
||||||
<xsl:with-param name="initHost" select="$initHost"/>
|
<xsl:with-param name="initHost" select="$initHost"/>
|
||||||
<xsl:with-param name="currentHost" select="$currentHost"/>
|
<xsl:with-param name="currentHost" select="$currentHost"/>
|
||||||
<xsl:with-param name="hostAddress" select="$hostAddress"/>
|
<xsl:with-param name="hostAddress" select="$hostAddress"/>
|
||||||
|
<xsl:with-param name="class" select="'ui label'"/>
|
||||||
<xsl:sort select="number(@portid)" order="ascending"/>
|
<xsl:sort select="number(@portid)" order="ascending"/>
|
||||||
</xsl:apply-templates>
|
</xsl:apply-templates>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
<xsl:import href="lib/head.xsl"/>
|
<xsl:import href="lib/head.xsl"/>
|
||||||
<xsl:import href="lib/nav.xsl"/>
|
<xsl:import href="lib/nav.xsl"/>
|
||||||
|
<xsl:import href="lib/service.xsl"/>
|
||||||
<xsl:import href="lib/toast.xsl"/>
|
<xsl:import href="lib/toast.xsl"/>
|
||||||
|
|
||||||
<xsl:output method="html" encoding="UTF-8"/>
|
<xsl:output method="html" encoding="UTF-8"/>
|
||||||
@ -18,7 +19,7 @@
|
|||||||
<xsl:param name="sudo" select="false"/>
|
<xsl:param name="sudo" select="false"/>
|
||||||
|
|
||||||
<xsl:variable name="current" select="./nmaprun"/>
|
<xsl:variable name="current" select="./nmaprun"/>
|
||||||
<xsl:variable name="stylesheetURL" select="substring-before(substring-after(processing-instruction('xml-stylesheet'),'href="'),'"')"/>
|
<xsl:variable name="stylesheetURL" select="substring-before(substring-after(processing-instruction('xml-stylesheet'),'href="'), '?')"/>
|
||||||
<xsl:variable name="basedir" select="concat($stylesheetURL, '/../..')"/>
|
<xsl:variable name="basedir" select="concat($stylesheetURL, '/../..')"/>
|
||||||
<xsl:variable name="init" select="document($originalURL)/nmaprun"/>
|
<xsl:variable name="init" select="document($originalURL)/nmaprun"/>
|
||||||
<xsl:variable name="nextComparison">
|
<xsl:variable name="nextComparison">
|
||||||
@ -50,11 +51,13 @@
|
|||||||
<xsl:with-param name="sudo" select="$sudo"/>
|
<xsl:with-param name="sudo" select="$sudo"/>
|
||||||
</xsl:apply-templates>
|
</xsl:apply-templates>
|
||||||
|
|
||||||
<main class="ui container">
|
<main class="ui wide container">
|
||||||
<h1 class="ui header"><xsl:value-of select="$targets"/></h1>
|
<h1 class="ui header"><xsl:value-of select="$targets"/></h1>
|
||||||
|
|
||||||
<div class="ui doubling stackable four column compact grid">
|
<div class="form">
|
||||||
<xsl:apply-templates select="host | $init/host[not(address/@addr=$current/host/address/@addr)][not(status/@state='down')]"/>
|
<div class="ui doubling stackable four column compact grid">
|
||||||
|
<xsl:apply-templates select="host | $init/host[not(address/@addr=$current/host/address/@addr)][not(status/@state='down')]"/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
@ -90,7 +93,7 @@ $('.ui.dropdown').dropdown()
|
|||||||
<div class="column">
|
<div class="column">
|
||||||
<div>
|
<div>
|
||||||
<xsl:attribute name="class">
|
<xsl:attribute name="class">
|
||||||
<xsl:text>ui fluid mini left icon compact input </xsl:text>
|
<xsl:text>ui fluid mini compact input </xsl:text>
|
||||||
<xsl:if test="$currentHost/ports/port | $initHost/ports/port[not(@portid=$currentHost/ports/port/@portid)][not(state/@state='closed')]">
|
<xsl:if test="$currentHost/ports/port | $initHost/ports/port[not(@portid=$currentHost/ports/port/@portid)][not(state/@state='closed')]">
|
||||||
<xsl:text>action buttons </xsl:text>
|
<xsl:text>action buttons </xsl:text>
|
||||||
</xsl:if>
|
</xsl:if>
|
||||||
@ -99,15 +102,15 @@ $('.ui.dropdown').dropdown()
|
|||||||
<xsl:otherwise>error</xsl:otherwise>
|
<xsl:otherwise>error</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
<i class="server icon"></i>
|
|
||||||
<input type="text" readonly="" value="{substring-before(hostnames/hostname/@name, '.')}" placeholder="{address/@addr}"
|
<input type="text" readonly="" value="{substring-before(hostnames/hostname/@name, '.')}" placeholder="{address/@addr}"
|
||||||
title="{$currentHost/hostnames/hostname/@name} ({address/@addr})"
|
title="{$currentHost/hostnames/hostname/@name} ({address/@addr})"
|
||||||
onfocus="this.value='{hostnames/hostname/@name}'; this.select()" onblur="this.value='{substring-before(hostnames/hostname/@name, '.')}'"
|
onfocus="this.value='{hostnames/hostname/@name}'; this.select()" onblur="this.value='{substring-before(hostnames/hostname/@name, '.')}'"
|
||||||
/>
|
/>
|
||||||
<xsl:apply-templates select="$currentHost/ports/port | $initHost/ports/port[not(@portid=$currentHost/ports/port/@portid)][not(state/@state='closed')]">
|
<xsl:apply-templates select="$initHost/ports/port[not(@portid=$currentHost/ports/port/@portid)][not(state/@state='closed')] | $currentHost/ports/port" mode="service">
|
||||||
<xsl:with-param name="initHost" select="$initHost"/>
|
<xsl:with-param name="initHost" select="$initHost"/>
|
||||||
<xsl:with-param name="currentHost" select="$currentHost"/>
|
<xsl:with-param name="currentHost" select="$currentHost"/>
|
||||||
<xsl:with-param name="hostAddress" select="$hostAddress"/>
|
<xsl:with-param name="hostAddress" select="$hostAddress"/>
|
||||||
|
<xsl:with-param name="class" select="'ui mini button'"/>
|
||||||
<xsl:sort select="number(@portid)" order="ascending"/>
|
<xsl:sort select="number(@portid)" order="ascending"/>
|
||||||
</xsl:apply-templates>
|
</xsl:apply-templates>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
<xsl:import href="lib/head.xsl"/>
|
<xsl:import href="lib/head.xsl"/>
|
||||||
<xsl:import href="lib/nav.xsl"/>
|
<xsl:import href="lib/nav.xsl"/>
|
||||||
|
<xsl:import href="lib/service.xsl"/>
|
||||||
<xsl:import href="lib/toast.xsl"/>
|
<xsl:import href="lib/toast.xsl"/>
|
||||||
|
|
||||||
<xsl:output method="html" encoding="UTF-8"/>
|
<xsl:output method="html" encoding="UTF-8"/>
|
||||||
@ -18,12 +19,12 @@
|
|||||||
<xsl:param name="sudo" select="false"/>
|
<xsl:param name="sudo" select="false"/>
|
||||||
|
|
||||||
<xsl:variable name="current" select="./nmaprun"/>
|
<xsl:variable name="current" select="./nmaprun"/>
|
||||||
<xsl:variable name="stylesheetURL" select="substring-before(substring-after(processing-instruction('xml-stylesheet'),'href="'),'"')"/>
|
<xsl:variable name="stylesheetURL" select="substring-before(substring-after(processing-instruction('xml-stylesheet'),'href="'), '?')"/>
|
||||||
<xsl:variable name="basedir" select="concat($stylesheetURL, '/../..')"/>
|
<xsl:variable name="basedir" select="concat($stylesheetURL, '/../..')"/>
|
||||||
<xsl:variable name="init" select="document($originalURL)/nmaprun"/>
|
<xsl:variable name="init" select="document($originalURL)/nmaprun"/>
|
||||||
<xsl:variable name="nextComparison">
|
<xsl:variable name="nextComparison">
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="$thisURL"><xsl:value-of select="$saveAs"/></xsl:when>
|
<xsl:when test="$thisURL"><xsl:value-of select="$thisURL"/></xsl:when>
|
||||||
<xsl:when test="$originalURL"><xsl:value-of select="$originalURL"/></xsl:when>
|
<xsl:when test="$originalURL"><xsl:value-of select="$originalURL"/></xsl:when>
|
||||||
<xsl:otherwise></xsl:otherwise>
|
<xsl:otherwise></xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
@ -74,7 +75,7 @@ table.order([1, 'asc']).draw()
|
|||||||
|
|
||||||
$('.ui.dropdown').dropdown()
|
$('.ui.dropdown').dropdown()
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<xsl:apply-templates select="runstats">
|
<xsl:apply-templates select="runstats">
|
||||||
<xsl:with-param name="init" select="$init"/>
|
<xsl:with-param name="init" select="$init"/>
|
||||||
</xsl:apply-templates>
|
</xsl:apply-templates>
|
||||||
@ -118,6 +119,7 @@ $('.ui.dropdown').dropdown()
|
|||||||
<th>Service</th>
|
<th>Service</th>
|
||||||
<th>Produit</th>
|
<th>Produit</th>
|
||||||
<th>Version</th>
|
<th>Version</th>
|
||||||
|
<th>Infos</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -171,49 +173,12 @@ $('.ui.dropdown').dropdown()
|
|||||||
<xsl:value-of select="@portid"/>
|
<xsl:value-of select="@portid"/>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a>
|
<xsl:apply-templates select="." mode="service">
|
||||||
<xsl:attribute name="class">
|
<xsl:with-param name="initHost" select="$initHost"/>
|
||||||
<xsl:text>ui mini fluid button </xsl:text>
|
<xsl:with-param name="currentHost" select="$currentHost"/>
|
||||||
<xsl:choose>
|
<xsl:with-param name="hostAddress" select="$hostAddress"/>
|
||||||
<xsl:when test="$currentPort/script[@id='http-info']/elem[@key='status']>=500">red</xsl:when>
|
<xsl:with-param name="class" select="'ui mini fluid button'"/>
|
||||||
<xsl:when test="$currentPort/script[@id='http-info']/elem[@key='status']>=400">orange</xsl:when>
|
</xsl:apply-templates>
|
||||||
<xsl:when test="$currentPort/script[@id='http-info']/elem[@key='status']>=200">green</xsl:when>
|
|
||||||
<xsl:when test="$currentPort/state/@state='open'">green</xsl:when>
|
|
||||||
<xsl:when test="$currentPort/state/@state='filtered'">orange</xsl:when>
|
|
||||||
<xsl:otherwise>red</xsl:otherwise>
|
|
||||||
</xsl:choose>
|
|
||||||
</xsl:attribute>
|
|
||||||
<xsl:if test="service/@name='ftp' or service/@name='ssh' or service/@name='http' or service/@name='https'">
|
|
||||||
<xsl:attribute name="href">
|
|
||||||
<xsl:choose>
|
|
||||||
<xsl:when test="service/@name='http' and service/@tunnel='ssl'">
|
|
||||||
<xsl:text>https</xsl:text>
|
|
||||||
</xsl:when>
|
|
||||||
<xsl:otherwise>
|
|
||||||
<xsl:value-of select="service/@name"/>
|
|
||||||
</xsl:otherwise>
|
|
||||||
</xsl:choose>
|
|
||||||
<xsl:text>://</xsl:text>
|
|
||||||
<xsl:value-of select="$hostAddress"/>
|
|
||||||
<xsl:text>:</xsl:text>
|
|
||||||
<xsl:value-of select="@portid"/>
|
|
||||||
</xsl:attribute>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:if test="service/@name='ms-wbt-server'">
|
|
||||||
<xsl:attribute name="href">
|
|
||||||
<xsl:text>rdp.php?v=</xsl:text>
|
|
||||||
<xsl:value-of select="$hostAddress"/>
|
|
||||||
<xsl:text>&p=</xsl:text>
|
|
||||||
<xsl:value-of select="@portid"/>
|
|
||||||
</xsl:attribute>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:if test="script[@id='http-info']/elem[@key='title']">
|
|
||||||
<xsl:attribute name="title">
|
|
||||||
<xsl:value-of select="script[@id='http-info']/elem[@key='title']"/>
|
|
||||||
</xsl:attribute>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:value-of select="service/@name"/>
|
|
||||||
</a>
|
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<xsl:value-of select="service/@product"/>
|
<xsl:value-of select="service/@product"/>
|
||||||
@ -221,8 +186,18 @@ $('.ui.dropdown').dropdown()
|
|||||||
<td>
|
<td>
|
||||||
<xsl:value-of select="service/@version"/>
|
<xsl:value-of select="service/@version"/>
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
<xsl:value-of select="service/@extrainfo"/>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="table">
|
||||||
|
<xsl:param name="hostAddress"/>
|
||||||
|
<a class="item share-size" href="file://///{$hostAddress}/{@key}" target="_blank" rel="noopener noreferrer" style="--free: {elem[@key='FreeSize']}; --total: {elem[@key='TotalSize']}">
|
||||||
|
<xsl:value-of select="@key"/>
|
||||||
|
</a>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
</xsl:stylesheet>
|
</xsl:stylesheet>
|
||||||
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<xsl:import href="lib/head.xsl"/>
|
<xsl:import href="lib/head.xsl"/>
|
||||||
<xsl:import href="lib/nav.xsl"/>
|
<xsl:import href="lib/nav.xsl"/>
|
||||||
<xsl:import href="lib/serviceLabel.xsl"/>
|
<xsl:import href="lib/service.xsl"/>
|
||||||
<xsl:import href="lib/toast.xsl"/>
|
<xsl:import href="lib/toast.xsl"/>
|
||||||
|
|
||||||
<xsl:output method="html" encoding="UTF-8"/>
|
<xsl:output method="html" encoding="UTF-8"/>
|
||||||
@ -16,10 +16,10 @@
|
|||||||
<xsl:param name="thisURL" select=""/>
|
<xsl:param name="thisURL" select=""/>
|
||||||
<xsl:param name="originalURL" select=""/>
|
<xsl:param name="originalURL" select=""/>
|
||||||
<xsl:param name="refreshPeriod" select="0"/>
|
<xsl:param name="refreshPeriod" select="0"/>
|
||||||
<xsl:param name="sudo" select="false"/>
|
<xsl:param name="sudo" select="false()"/>
|
||||||
|
|
||||||
<xsl:variable name="current" select="./nmaprun"/>
|
<xsl:variable name="current" select="./nmaprun"/>
|
||||||
<xsl:variable name="stylesheetURL" select="substring-before(substring-after(processing-instruction('xml-stylesheet'),'href="'),'"')"/>
|
<xsl:variable name="stylesheetURL" select="substring-before(substring-after(processing-instruction('xml-stylesheet'),'href="'), '?')"/>
|
||||||
<xsl:variable name="basedir" select="concat($stylesheetURL, '/../..')"/>
|
<xsl:variable name="basedir" select="concat($stylesheetURL, '/../..')"/>
|
||||||
<xsl:variable name="init" select="document($originalURL)/nmaprun"/>
|
<xsl:variable name="init" select="document($originalURL)/nmaprun"/>
|
||||||
<xsl:variable name="nextComparison">
|
<xsl:variable name="nextComparison">
|
||||||
@ -31,7 +31,7 @@
|
|||||||
</xsl:variable>
|
</xsl:variable>
|
||||||
|
|
||||||
<xsl:template match="nmaprun">
|
<xsl:template match="nmaprun">
|
||||||
<xsl:variable name="targets" select="substring-after(@args, '.xml ')"/>
|
<xsl:variable name="targets" select="substring-after(@args, '-oX - ')"/>
|
||||||
|
|
||||||
<html lang="fr">
|
<html lang="fr">
|
||||||
<xsl:apply-templates select="." mode="head">
|
<xsl:apply-templates select="." mode="head">
|
||||||
@ -61,7 +61,7 @@
|
|||||||
<th>Adresse IP</th>
|
<th>Adresse IP</th>
|
||||||
<th>Nom</th>
|
<th>Nom</th>
|
||||||
<th>Fabricant</th>
|
<th>Fabricant</th>
|
||||||
<th class="eight wide">Services</th>
|
<th class="six wide">Services</th>
|
||||||
<th>Scanner les services</th>
|
<th>Scanner les services</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@ -163,10 +163,11 @@ function hostScanning(link) {
|
|||||||
<xsl:value-of select="address[@addrtype='mac']/@vendor"/>
|
<xsl:value-of select="address[@addrtype='mac']/@vendor"/>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<xsl:apply-templates select="$initHost/ports/port[not(@portid=$currentHost/ports/port/@portid)][not(state/@state='closed')] | $currentHost/ports/port">
|
<xsl:apply-templates select="$initHost/ports/port[not(@portid=$currentHost/ports/port/@portid)][not(state/@state='closed')] | $currentHost/ports/port" mode="service">
|
||||||
<xsl:with-param name="initHost" select="$initHost"/>
|
<xsl:with-param name="initHost" select="$initHost"/>
|
||||||
<xsl:with-param name="currentHost" select="$currentHost"/>
|
<xsl:with-param name="currentHost" select="$currentHost"/>
|
||||||
<xsl:with-param name="hostAddress" select="$hostAddress"/>
|
<xsl:with-param name="hostAddress" select="$hostAddress"/>
|
||||||
|
<xsl:with-param name="class" select="'ui label'"/>
|
||||||
<xsl:sort select="number(@portid)" order="ascending"/>
|
<xsl:sort select="number(@portid)" order="ascending"/>
|
||||||
</xsl:apply-templates>
|
</xsl:apply-templates>
|
||||||
</td>
|
</td>
|
||||||
@ -176,7 +177,7 @@ function hostScanning(link) {
|
|||||||
<xsl:attribute name="href">
|
<xsl:attribute name="href">
|
||||||
<xsl:value-of select="$basedir"/>
|
<xsl:value-of select="$basedir"/>
|
||||||
<xsl:text>/scan.php?preset=host&targets=</xsl:text>
|
<xsl:text>/scan.php?preset=host&targets=</xsl:text>
|
||||||
<xsl:value-of select="$hostAddress"/>
|
<xsl:value-of select="address/@addr"/>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
<i class="satellite dish icon"></i>
|
<i class="satellite dish icon"></i>
|
||||||
<xsl:text> Services</xsl:text>
|
<xsl:text> Services</xsl:text>
|
||||||
@ -185,7 +186,7 @@ function hostScanning(link) {
|
|||||||
<xsl:attribute name="href">
|
<xsl:attribute name="href">
|
||||||
<xsl:value-of select="$basedir"/>
|
<xsl:value-of select="$basedir"/>
|
||||||
<xsl:text>/?preset=host&targets=</xsl:text>
|
<xsl:text>/?preset=host&targets=</xsl:text>
|
||||||
<xsl:value-of select="$hostAddress"/>
|
<xsl:value-of select="address/@addr"/>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
<i class="settings icon"></i>
|
<i class="settings icon"></i>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@ -77,4 +77,4 @@ refreshButton.onclick = function(event) {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
</xsl:stylesheet>
|
</xsl:stylesheet>
|
||||||
|
|||||||
@ -4,17 +4,19 @@
|
|||||||
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||||
version="1.1">
|
version="1.1">
|
||||||
|
|
||||||
<xsl:template match="port">
|
<xsl:template match="port" mode="service">
|
||||||
<xsl:param name="hostAddress"/>
|
<xsl:param name="hostAddress"/>
|
||||||
<xsl:param name="initHost"/>
|
<xsl:param name="initHost"/>
|
||||||
<xsl:param name="currentHost"/>
|
<xsl:param name="currentHost"/>
|
||||||
|
<xsl:param name="class"/>
|
||||||
<xsl:variable name="portid" select="@portid"/>
|
<xsl:variable name="portid" select="@portid"/>
|
||||||
<xsl:variable name="initPort" select="$initHost/ports/port[@portid=$portid]"/>
|
<xsl:variable name="initPort" select="$initHost/ports/port[@portid=$portid]"/>
|
||||||
<xsl:variable name="currentPort" select="$currentHost/ports/port[@portid=$portid]"/>
|
<xsl:variable name="currentPort" select="$currentHost/ports/port[@portid=$portid]"/>
|
||||||
|
|
||||||
<a target="_blank">
|
<a target="_blank">
|
||||||
<xsl:attribute name="class">
|
<xsl:attribute name="class">
|
||||||
<xsl:text>ui label </xsl:text>
|
<xsl:value-of select="$class"/>
|
||||||
|
<xsl:text> </xsl:text>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="$currentPort/script[@id='http-info']/elem[@key='status']>=500">red</xsl:when>
|
<xsl:when test="$currentPort/script[@id='http-info']/elem[@key='status']>=500">red</xsl:when>
|
||||||
<xsl:when test="$currentPort/script[@id='http-info']/elem[@key='status']>=400">orange</xsl:when>
|
<xsl:when test="$currentPort/script[@id='http-info']/elem[@key='status']>=400">orange</xsl:when>
|
||||||
@ -24,13 +26,33 @@
|
|||||||
<xsl:otherwise>red</xsl:otherwise>
|
<xsl:otherwise>red</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="(service/@name='microsoft-ds' or service/@name='netbios-ssn') and ../../hostscript/script[@id='smb-shares-size']/table"> mini dropdown button share-size</xsl:when>
|
<xsl:when test="$currentPort/script[@id='smb-shares-size']/table"> mini dropdown button share-size</xsl:when>
|
||||||
<xsl:otherwise> small</xsl:otherwise>
|
<xsl:otherwise> small</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
|
<xsl:if test="$currentPort/script[@id='smb-shares-size']/table">
|
||||||
|
<xsl:attribute name="style">
|
||||||
|
<xsl:for-each select="$currentPort/script[@id='smb-shares-size']/table">
|
||||||
|
<xsl:sort select="elem[@key='FreeSize'] div elem[@key='TotalSize']" order="ascending"/>
|
||||||
|
<xsl:if test="position()=1">
|
||||||
|
<xsl:text>--free: </xsl:text>
|
||||||
|
<xsl:value-of select="elem[@key='FreeSize']"/>
|
||||||
|
<xsl:text>; --total: </xsl:text>
|
||||||
|
<xsl:value-of select="elem[@key='TotalSize']"/>
|
||||||
|
</xsl:if>
|
||||||
|
</xsl:for-each>
|
||||||
|
</xsl:attribute>
|
||||||
|
</xsl:if>
|
||||||
<xsl:if test="service/@name='ftp' or service/@name='ssh' or service/@name='http' or service/@name='https'">
|
<xsl:if test="service/@name='ftp' or service/@name='ssh' or service/@name='http' or service/@name='https'">
|
||||||
<xsl:attribute name="href">
|
<xsl:attribute name="href">
|
||||||
<xsl:value-of select="service/@name"/>
|
<xsl:choose>
|
||||||
|
<xsl:when test="service/@name='http' and service/@tunnel='ssl'">
|
||||||
|
<xsl:text>https</xsl:text>
|
||||||
|
</xsl:when>
|
||||||
|
<xsl:otherwise>
|
||||||
|
<xsl:value-of select="service/@name"/>
|
||||||
|
</xsl:otherwise>
|
||||||
|
</xsl:choose>
|
||||||
<xsl:text>://</xsl:text>
|
<xsl:text>://</xsl:text>
|
||||||
<xsl:value-of select="$hostAddress"/>
|
<xsl:value-of select="$hostAddress"/>
|
||||||
<xsl:text>:</xsl:text>
|
<xsl:text>:</xsl:text>
|
||||||
@ -60,21 +82,10 @@
|
|||||||
<xsl:value-of select="service/@name"/>
|
<xsl:value-of select="service/@name"/>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
<xsl:if test="(service/@name='microsoft-ds' or service/@name='netbios-ssn') and ../../hostscript/script[@id='smb-shares-size']/table">
|
<xsl:if test="$currentPort/script[@id='smb-shares-size']/table">
|
||||||
<xsl:attribute name="style">
|
|
||||||
<xsl:for-each select="$currentHost/hostscript/script[@id='smb-shares-size']/table">
|
|
||||||
<xsl:sort select="elem[@key='FreeSize'] div elem[@key='TotalSize']" order="ascending"/>
|
|
||||||
<xsl:if test="position()=1">
|
|
||||||
<xsl:text>--free: </xsl:text>
|
|
||||||
<xsl:value-of select="elem[@key='FreeSize']"/>
|
|
||||||
<xsl:text>; --total: </xsl:text>
|
|
||||||
<xsl:value-of select="elem[@key='TotalSize']"/>
|
|
||||||
</xsl:if>
|
|
||||||
</xsl:for-each>
|
|
||||||
</xsl:attribute>
|
|
||||||
<i class="dropdown icon"></i>
|
<i class="dropdown icon"></i>
|
||||||
<div class="menu">
|
<div class="menu">
|
||||||
<xsl:apply-templates select="$currentHost/hostscript/script[@id='smb-shares-size']/table">
|
<xsl:apply-templates select="$currentPort/script[@id='smb-shares-size']/table">
|
||||||
<xsl:with-param name="hostAddress" select="$hostAddress"/>
|
<xsl:with-param name="hostAddress" select="$hostAddress"/>
|
||||||
</xsl:apply-templates>
|
</xsl:apply-templates>
|
||||||
</div>
|
</div>
|
||||||
@ -10,7 +10,7 @@
|
|||||||
<xsl:if test="finished/@summary">
|
<xsl:if test="finished/@summary">
|
||||||
$.toast({
|
$.toast({
|
||||||
title : '<xsl:value-of select="finished/@exit"/>',
|
title : '<xsl:value-of select="finished/@exit"/>',
|
||||||
message : '<xsl:value-of select="finished/@summary"/>',
|
message : `<xsl:value-of select="finished/@summary"/>`,
|
||||||
showIcon : 'satellite dish',
|
showIcon : 'satellite dish',
|
||||||
displayTime: 0,
|
displayTime: 0,
|
||||||
closeIcon : true,
|
closeIcon : true,
|
||||||
@ -20,7 +20,7 @@ $.toast({
|
|||||||
<xsl:if test="finished/@errormsg">
|
<xsl:if test="finished/@errormsg">
|
||||||
$.toast({
|
$.toast({
|
||||||
title : '<xsl:value-of select="finished/@exit"/>',
|
title : '<xsl:value-of select="finished/@exit"/>',
|
||||||
message : '<xsl:value-of select="finished/@errormsg"/>',
|
message : `<xsl:value-of select="finished/@errormsg"/>`,
|
||||||
showIcon : 'exclamation triangle',
|
showIcon : 'exclamation triangle',
|
||||||
class : 'error',
|
class : 'error',
|
||||||
displayTime: 0,
|
displayTime: 0,
|
||||||
|
|||||||
Reference in New Issue
Block a user