ajout infos OS et IP sur liste taches
This commit is contained in:
parent
73f12694b0
commit
04ab171cd7
115
admin/taches.php
115
admin/taches.php
@ -2,73 +2,86 @@
|
|||||||
// Ce script affiche les processus en cours sur une machine windows
|
// Ce script affiche les processus en cours sur une machine windows
|
||||||
// Pour ceci il interroge (http) un serveur windows du domaine sur le lequel sera exécuté une commande tasklist /s $host
|
// Pour ceci il interroge (http) un serveur windows du domaine sur le lequel sera exécuté une commande tasklist /s $host
|
||||||
require_once 'HTTP/Request2.php';
|
require_once 'HTTP/Request2.php';
|
||||||
|
include_once('winlog_admin_conf.php');
|
||||||
|
include_once('connexions.php');
|
||||||
|
|
||||||
Function get_tasks($url) {
|
Function Get_tasks($url) {
|
||||||
$taches = array();
|
$taches = array();
|
||||||
$r = new HTTP_Request2($url, HTTP_Request2::METHOD_GET);
|
$r = new HTTP_Request2($url, HTTP_Request2::METHOD_GET);
|
||||||
try {
|
try {
|
||||||
$response = $r->send();
|
$response = $r->send();
|
||||||
if (200 == $response->getStatus()) {
|
if (200 == $response->getStatus()) {
|
||||||
$body = $response->getBody();
|
$body = $response->getBody();
|
||||||
$taches = json_decode($body);
|
//$taches = json_decode(mb_convert_encoding($body, 'UTF-8'));
|
||||||
}
|
$taches = json_decode($body);
|
||||||
}
|
}
|
||||||
catch (HTTP_Request2_Exception $ex) {
|
}
|
||||||
echo $ex->getMessage();
|
catch (HTTP_Request2_Exception $ex) {
|
||||||
}
|
echo $ex->getMessage();
|
||||||
return $taches;
|
}
|
||||||
|
return $taches;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Variables
|
// Variables
|
||||||
|
|
||||||
$precedent = $_SERVER["HTTP_REFERER"];
|
|
||||||
$host = $_GET['machine'];
|
$host = $_GET['machine'];
|
||||||
//$url = "http://10.2.0.13/task.php?host=".$host; // ancien seretud06
|
$machines = Machines();
|
||||||
$url = "http://10.5.0.15:81/task.php?host=".$host; // Ghost + apache, port 81
|
$machine = $machines[$host];
|
||||||
|
$os = $machine[1];
|
||||||
|
$os_version = $machine[3];
|
||||||
|
$adresse_ip = $machine[4];
|
||||||
|
|
||||||
|
$url = $url_taches . "?host=" . $host; // Ghost + apache, port 81
|
||||||
$processus_utilisateur = 'IUT'; // motif identifiant un processus utilisateur dans la task list
|
$processus_utilisateur = 'IUT'; // motif identifiant un processus utilisateur dans la task list
|
||||||
$msg = "";
|
$msg = "";
|
||||||
|
|
||||||
|
|
||||||
// si le script est appelé sans paramètre, on revient à la page précédente
|
// si le script est appelé sans paramètre, on revient à la page précédente
|
||||||
if ($host == "" ) { header("Location: $precedent"); exit; }
|
if ($host == "" ) {
|
||||||
|
$precedent = $_SERVER["HTTP_REFERER"];
|
||||||
|
header("Location: $precedent");
|
||||||
|
exit;
|
||||||
|
}
|
||||||
$host_json = json_encode(array($host));
|
$host_json = json_encode(array($host));
|
||||||
|
|
||||||
$proc = get_tasks($url);
|
$proc = Get_tasks($url);
|
||||||
if (sizeof($proc) == 0) { $msg = "La machine ".$host." n'a renvoyé aucune réponse."; }
|
if (sizeof($proc) == 0) {
|
||||||
|
$msg = "La machine ".$host." n'a renvoyé aucune réponse.";
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
$msg="<table><th>Processus</th><th>mémoire</th><th>Propriétaire</th>";
|
$msg="<table><th>Processus</th><th>mémoire</th><th>Propriétaire</th>";
|
||||||
$lig_proc =array();
|
$lig_proc = array();
|
||||||
foreach($proc as $li) {
|
foreach($proc as $li) {
|
||||||
$li = str_replace('ÿ','',$li);
|
$li = str_replace('ÿ','',$li);
|
||||||
$li = str_replace('"','',$li);
|
$li = str_replace('"','',$li);
|
||||||
$lig_prog = explode(',', $li);
|
$lig_prog = explode(',', $li);
|
||||||
$class_user = "";
|
$class_user = "";
|
||||||
if (substr($lig_prog[5],0,strlen($processus_utilisateur))==$processus_utilisateur) { $class_user = " p_user"; };
|
if (substr($lig_prog[5], 0, strlen($processus_utilisateur)) == $processus_utilisateur) {
|
||||||
$msg = $msg."<tr class='proc".$class_user."'><td><a href=\"https://www.google.fr/search?q=".$lig_prog[0]."\" target=\"_blank\" >".$lig_prog[0]."</a></td><td>".$lig_prog[4]."</td><td>".$lig_prog[5]."</td></tr>\n";
|
$class_user = " p_user";
|
||||||
}
|
}
|
||||||
$msg = $msg."</table>";
|
$msg = $msg."<tr class='proc".$class_user."'><td><a href=\"https://www.google.fr/search?q=".$lig_prog[0]."\" target=\"_blank\" >".$lig_prog[0]."</a></td><td>".$lig_prog[4]."</td><td>".$lig_prog[5]."</td></tr>\n";
|
||||||
|
}
|
||||||
|
$msg = $msg."</table>";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML>
|
||||||
<html>
|
<html lang="fr">
|
||||||
<head>
|
<head>
|
||||||
<title>Winlog : Connexions en cours dans les salles</title>
|
<title>Winlog : Connexions en cours dans les salles</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="refresh" content=20>
|
<meta http-equiv="refresh" content=20>
|
||||||
<meta http-equiv="Content-Style-Type" content="text/css">
|
<link rel="stylesheet" media="screen" type="text/css" title="default" href="default.css">
|
||||||
<meta http-equiv="Content-Language" content="fr">
|
</head>
|
||||||
<link rel="stylesheet" media="screen" type="text/css" title="default" href="default.css">
|
<body>
|
||||||
</head>
|
<h2>Processus utilisateurs de la machine <?php echo $host; ?> <a href="salles_live.php">[retour]</a></h2>
|
||||||
<body>
|
<p> OS : <?php echo($os); ?> version <?php echo($os_version) ?><br/>adresse IP : <?php echo($adresse_ip) ?></p>
|
||||||
<h2>Processus utilisateurs de la machine <?php echo $host; ?> <a href="salles_live.php">[retour]</a></h2>
|
<form action="stop.php" method="POST">
|
||||||
<form action="stop.php" method="POST">
|
<input type="hidden" name="host" value='<?php echo($host_json); ?>'>
|
||||||
<input type="hidden" name="host" value='<?php echo($host_json); ?>'>
|
<!--<input type="submit" value="fermer la session" name="stop">-->
|
||||||
<!--<input type="submit" value="fermer la session" name="stop">-->
|
<input type="submit" value="redémarrer cette machine" name="stop">
|
||||||
<input type="submit" value="redémarrer cette machine" name="stop">
|
<input type="submit" value="éteindre cette machine" name="stop">
|
||||||
<input type="submit" value="éteindre cette machine" name="stop">
|
</form>
|
||||||
</form>
|
|
||||||
<?php
|
<?php
|
||||||
echo $msg;
|
echo $msg;
|
||||||
?>
|
?>
|
||||||
</body>
|
</body>
|
||||||
</hmtl>
|
</hmtl>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user