mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Security fix: unauthorized access Affects nginx users: Moved php files outside of public html directory (Apache was protected by .htaccess) Affects all users: Some files did not check for authentication and could disclose some info. Better checks before including files from user input * git mv html/includes/ includes/html git mv html/pages/ includes/html/
64 lines
2.1 KiB
PHP
64 lines
2.1 KiB
PHP
<?php
|
|
/*
|
|
* LibreNMS module to Display data from F5 BigIP LTM Devices
|
|
*
|
|
* Copyright (c) 2016 Aaron Daniels <aaron@daniels.id.au>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
* option) any later version. Please see LICENSE.txt at the top level of
|
|
* the source code distribution for details.
|
|
*/
|
|
|
|
?>
|
|
<table id='grid' data-toggle='bootgrid' class='table table-condensed table-responsive table-striped'>
|
|
<thead>
|
|
<tr>
|
|
<th data-column-id="poolid" data-type="numeric" data-visible="false">poolid</th>
|
|
<th data-column-id="name">Name</th>
|
|
<th data-column-id="minup" data-type="numeric">Minimum Members</th>
|
|
<th data-column-id="currentup" data-type="numeric">Current Members</th>
|
|
<th data-column-id="status" data-visible="false">Status</th>
|
|
<th data-column-id="message">Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
foreach ($components as $pool_id => $array) {
|
|
if ($array['type'] != 'f5-ltm-pool') {
|
|
continue;
|
|
}
|
|
if ($array['status'] != 0) {
|
|
$message = $array['error'];
|
|
$status = 2;
|
|
} else {
|
|
$message = 'Ok';
|
|
$status = '';
|
|
}
|
|
?>
|
|
<tr <?php echo $error; ?>>
|
|
<td><?php echo $pool_id; ?></td>
|
|
<td><?php echo $array['label']; ?></td>
|
|
<td><?php echo $array['minup']; ?></td>
|
|
<td><?php echo $array['currentup']; ?></td>
|
|
<td><?php echo $status; ?></td>
|
|
<td><?php echo $message; ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
<script type="text/javascript">
|
|
$("#grid").bootgrid({
|
|
caseSensitive: false,
|
|
statusMappings: {
|
|
2: "danger"
|
|
},
|
|
}).on("click.rs.jquery.bootgrid", function (e, columns, row) {
|
|
var link = '<?php echo generate_url($vars, array('type' => 'ltm_pool', 'subtype' => 'ltm_pool_details')); ?>poolid='+row['poolid'];
|
|
window.location.href = link;
|
|
});
|
|
</script>
|