rescan named scan
This commit is contained in:
parent
566a5a4c67
commit
72396e5071
@ -26,7 +26,7 @@ body > .grid {
|
|||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="ui middle aligned center aligned grid inverted">
|
<div class="ui middle aligned center aligned inverted grid">
|
||||||
<div class="column" style="max-width: 450px;">
|
<div class="column" style="max-width: 450px;">
|
||||||
<h2 class="ui inverted teal fluid image header logo">
|
<h2 class="ui inverted teal fluid image header logo">
|
||||||
lan<?php include 'logo.svg'; ?>can
|
lan<?php include 'logo.svg'; ?>can
|
||||||
@ -72,7 +72,10 @@ if (file_exists($SCANSDIR)) {
|
|||||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.2/semantic.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.2/semantic.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
$('#lanSelect').dropdown({allowAdditions: true, clearable: true})
|
$('#lanSelect').dropdown({
|
||||||
|
allowAdditions: true,
|
||||||
|
clearable: true
|
||||||
|
})
|
||||||
|
|
||||||
$('#scanForm').form({
|
$('#scanForm').form({
|
||||||
fields: {
|
fields: {
|
||||||
@ -105,7 +108,6 @@ if (file_exists($SCANSDIR)) {
|
|||||||
this.reportValidity()
|
this.reportValidity()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
121
name.php
Normal file
121
name.php
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
<?php include_once "config.php"; ?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="fr">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>lanScan</title>
|
||||||
|
<link rel="icon" href="favicon.ico" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/fomantic-ui@2.9.3/dist/semantic.min.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
background-image: url(bg.jpg);
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
body>.grid {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
margin-right: 0 !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="ui center aligned inverted grid">
|
||||||
|
<div class="column" style="max-width: 450px;">
|
||||||
|
<h2 class="ui inverted teal fluid image header logo" style="margin-top: 15vh">
|
||||||
|
lan<?php include 'logo.svg'; ?>can
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<?php if (isset($errorMessage)) { ?>
|
||||||
|
<div class="ui negative message">
|
||||||
|
<i class="close icon"></i>
|
||||||
|
<div class="header">Erreur</div>
|
||||||
|
<p><?= $errorMessage ?></p>
|
||||||
|
</div>
|
||||||
|
<?php } ?>
|
||||||
|
|
||||||
|
<form id="scanForm" class="ui large form initial inverted" action="scan.php" method="get">
|
||||||
|
<div class="ui left aligned stacked segment inverted">
|
||||||
|
<h4 class="ui header">Découvrir ou superviser un réseau</h4>
|
||||||
|
<div class="inverted field">
|
||||||
|
<div class="ui large input">
|
||||||
|
<input id="nameInput" type="text" name="lan" placeholder="<?= $_SERVER['REMOTE_ADDR']; ?>" list="targetsList" pattern="[a-zA-Z0-9._\/ \-]+" required
|
||||||
|
title="Les cibles peuvent être spécifiées par des noms d'hôtes, des adresses IP, des adresses de réseaux, etc.
|
||||||
|
Exemples: <?= $_SERVER['REMOTE_ADDR']; ?>/24 <?= $_SERVER['SERVER_NAME']; ?> 10.0-255.0-255.1-254" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="field">
|
||||||
|
<label for="nameInput">Enregistrer sous le nom (optionnel)</label>
|
||||||
|
<div class="ui small input">
|
||||||
|
<input id="nameInput" type="text" name="name" placeholder="Réseau local" pattern='[^<>:"\\\/\|@?]+'
|
||||||
|
title="Caractères interdits : <>:"\/|@?">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="ui error message"></div>
|
||||||
|
<button type="submit" class="ui fluid large teal labeled icon submit button">
|
||||||
|
<i class="satellite dish icon"></i>Scanner
|
||||||
|
</button>
|
||||||
|
<div class="ui divider"></div>
|
||||||
|
<a href="options.php">Options avancées</a>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<?php if (file_exists($SCANSDIR)) { ?>
|
||||||
|
<div class="ui inverted fluid card" style="margin-top: 10vh">
|
||||||
|
<div class="content">
|
||||||
|
<div class="header">Scans enregistrés</div>
|
||||||
|
</div>
|
||||||
|
<table class="ui very basic inverted table">
|
||||||
|
<tbody>
|
||||||
|
<?php
|
||||||
|
foreach (scandir($SCANSDIR) as $filename) {
|
||||||
|
if (substr($filename, -4) == '.xml') {
|
||||||
|
$name = str_replace('!', '/', substr_replace($filename, '', -4));
|
||||||
|
echo "<tr><td class='selectable'><a href='$SCANSDIR/" . rawurlencode($filename) . "'>$name</a></td><td><a href='rescan.php?name=$name' class='ui mini labelled button'><i class='sync icon'></i>Rescanner</a></td></tr>\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<datalist id='targetsList'>
|
||||||
|
<option value="<?= $_SERVER['REMOTE_ADDR']; ?>/24"></option>
|
||||||
|
<option value="<?= $_SERVER['SERVER_NAME']; ?>"></option>
|
||||||
|
</datalist>
|
||||||
|
|
||||||
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.2/semantic.min.js"></script>
|
||||||
|
<script>
|
||||||
|
scanForm.onsubmit = function(event) {
|
||||||
|
if (this.checkValidity()) {
|
||||||
|
scanForm.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
|
||||||
|
} else {
|
||||||
|
event.preventDefault()
|
||||||
|
this.reportValidity()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html
|
10
options.php
10
options.php
@ -577,7 +577,6 @@ Exemples: <?= $_SERVER['REMOTE_ADDR']; ?>/24 <?= $_SERVER['SERVER_NAME']; ?> 10.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="inverted field">
|
|
||||||
<div class="two inverted fields">
|
<div class="two inverted fields">
|
||||||
<div class="inverted field">
|
<div class="inverted field">
|
||||||
<label for="mtu" title="--mtu">Taille des paquets</label>
|
<label for="mtu" title="--mtu">Taille des paquets</label>
|
||||||
@ -589,7 +588,6 @@ Exemples: <?= $_SERVER['REMOTE_ADDR']; ?>/24 <?= $_SERVER['SERVER_NAME']; ?> 10.
|
|||||||
<input type="number" id="d" name="-d" min="0">
|
<input type="number" id="d" name="-d" min="0">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="inverted field">
|
<div class="inverted field">
|
||||||
<label for="g" title="-g">Port source</label>
|
<label for="g" title="-g">Port source</label>
|
||||||
@ -741,8 +739,12 @@ Exemples: <?= $_SERVER['REMOTE_ADDR']; ?>/24 <?= $_SERVER['SERVER_NAME']; ?> 10.
|
|||||||
}
|
}
|
||||||
new TagsInput(dnsServersInput)
|
new TagsInput(dnsServersInput)
|
||||||
new TagsInput(scanflagsInput)
|
new TagsInput(scanflagsInput)
|
||||||
new TagsInput(scriptInput, { enforceWhitelist: true })
|
new TagsInput(scriptInput, {
|
||||||
new TagsInput(scriptArgsInput, { delimiters: ',' })
|
enforceWhitelist: true
|
||||||
|
})
|
||||||
|
new TagsInput(scriptArgsInput, {
|
||||||
|
delimiters: ','
|
||||||
|
})
|
||||||
|
|
||||||
newScanForm.onsubmit = function(event) {
|
newScanForm.onsubmit = function(event) {
|
||||||
if (this.checkValidity()) {
|
if (this.checkValidity()) {
|
||||||
|
32
rescan.php
Normal file
32
rescan.php
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
error_reporting(E_ALL);
|
||||||
|
ini_set('display_errors', '1');
|
||||||
|
ini_set('display_startup_errors', '1');
|
||||||
|
|
||||||
|
include_once 'config.php';
|
||||||
|
|
||||||
|
$fileNameRegex = '/^[^<>:\/|?]+$/';
|
||||||
|
|
||||||
|
$name = filter_input(INPUT_GET, 'name', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => $fileNameRegex], "flags" => FILTER_NULL_ON_FAILURE]);
|
||||||
|
if (!$name) {
|
||||||
|
die("Paramètre manquant : name");
|
||||||
|
}
|
||||||
|
|
||||||
|
$path = "$SCANSDIR/$name.xml";
|
||||||
|
if (!file_exists($path)) {
|
||||||
|
die("Scan inconnu : $name");
|
||||||
|
}
|
||||||
|
|
||||||
|
$xml = simplexml_load_file($path);
|
||||||
|
$cmd = $xml["args"];
|
||||||
|
if (substr( $cmd, 0, 5 ) != "nmap ") {
|
||||||
|
die("Erreur : $path n'est pas un fichier de scan nmap");
|
||||||
|
}
|
||||||
|
|
||||||
|
$cmd = $NMAP . substr($xml["args"], 4);
|
||||||
|
|
||||||
|
header('Content-type: text/xml');
|
||||||
|
system("$cmd", $retcode);
|
||||||
|
|
||||||
|
exit();
|
10
scan.php
10
scan.php
@ -2,8 +2,11 @@
|
|||||||
|
|
||||||
include_once 'config.php';
|
include_once 'config.php';
|
||||||
|
|
||||||
|
$fileNameRegex = '/^[^<>:\/|?]+$/';
|
||||||
$targetsListRegex = '/^[\da-zA-Z-. \/]+$/';
|
$targetsListRegex = '/^[\da-zA-Z-. \/]+$/';
|
||||||
|
|
||||||
|
$name = filter_input(INPUT_GET, 'name', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => $fileNameRegex], "flags" => FILTER_NULL_ON_FAILURE]);
|
||||||
|
|
||||||
$lan = filter_input(INPUT_GET, 'lan', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => $targetsListRegex], "flags" => FILTER_NULL_ON_FAILURE]);
|
$lan = filter_input(INPUT_GET, 'lan', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => $targetsListRegex], "flags" => FILTER_NULL_ON_FAILURE]);
|
||||||
if ($lan) {
|
if ($lan) {
|
||||||
$cmd = "$NMAP $LANSCANOPTIONS $lan";
|
$cmd = "$NMAP $LANSCANOPTIONS $lan";
|
||||||
@ -22,7 +25,6 @@ if ($targets) {
|
|||||||
$protocolePortsListRegex = '/^(([TU]:)?[0-9\-]+|[a-z\-]+)(,([TU]:)?[0-9\-]+|,[a-z\-]+)*$/';
|
$protocolePortsListRegex = '/^(([TU]:)?[0-9\-]+|[a-z\-]+)(,([TU]:)?[0-9\-]+|,[a-z\-]+)*$/';
|
||||||
$portsListRegex = '/^([0-9\-]+|[a-z\-]+)(,[0-9\-]+|,[a-z\-]+)*$/';
|
$portsListRegex = '/^([0-9\-]+|[a-z\-]+)(,[0-9\-]+|,[a-z\-]+)*$/';
|
||||||
$tempoRegex = '/^\d+[smh]?$/';
|
$tempoRegex = '/^\d+[smh]?$/';
|
||||||
$fileNameRegex = '/^[^<>:\/|?]+$/';
|
|
||||||
|
|
||||||
$inputs = filter_input_array(INPUT_GET, [
|
$inputs = filter_input_array(INPUT_GET, [
|
||||||
// TARGET SPECIFICATION:
|
// TARGET SPECIFICATION:
|
||||||
@ -148,10 +150,12 @@ if ($targets) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($cmd) {
|
if ($cmd) {
|
||||||
|
if ($name) {
|
||||||
if (!file_exists($SCANSDIR)) mkdir($SCANSDIR);
|
if (!file_exists($SCANSDIR)) mkdir($SCANSDIR);
|
||||||
$path = "$SCANSDIR/$filename.xml";
|
|
||||||
|
|
||||||
if (!file_exists($path)) $cmd .= " | tee '$path'";
|
$path = "$SCANSDIR/" . escapeshellarg($name) . ".xml";
|
||||||
|
$cmd .= " | tee '$path'";
|
||||||
|
}
|
||||||
|
|
||||||
header('Content-type: text/xml');
|
header('Content-type: text/xml');
|
||||||
system("$cmd", $retcode);
|
system("$cmd", $retcode);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user