[01-Mar-2022 12:40:07 America/New_York] PHP Fatal error: require_once(): Failed opening required 'diag_logs_common.inc' (include_path='/usr/local/etc/inc:/usr/local/www:/usr/local/opnsense/mvc:/usr/local/opnsense/contrib:/usr/local/share/pear:/usr/local/share') in /usr/local/www/widgets/widgets/ids_log.widget.php on line 47[01-Mar-2022 12:41:37 America/New_York] PHP Warning: require_once(diag_logs_common.inc): failed to open stream: No such file or directory in /usr/local/www/widgets/widgets/ids_log.widget.php on line 47
<?php/* Copyright (C) 2015 S. Linke <dev@devsash.de> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*/require_once("guiconfig.inc");$ids_logfile = '/var/log/suricata.log';if (!$config['widgets']['idslogfiltercount']){ $syslogEntriesToFetch = isset($config['syslog']['nentries']) ? $config['syslog']['nentries'] : 20;} else { $syslogEntriesToFetch = $config['widgets']['idslogfiltercount'];}if (is_numeric($_POST['logfiltercount'])) { $countReceived = $_POST['logfiltercount']; $config['widgets']['idslogfiltercount'] = $countReceived; write_config("Saved Widget IDS Log Filter Setting"); header(url_safe('Location: /index.php')); exit;}require_once('diag_logs_common.inc');?><div id="ids_log-settings" class="widgetconfigdiv" style="display:none;"> <form action="/widgets/widgets/ids_log.widget.php" method="post" name="iform"> <table class="table table-striped"> <tr> <td><?=gettext("Number of Log lines to display");?>:</td> <td> <select name="logfiltercount" id="logfiltercount"> <?php for ($i = 1; $i <= 50; $i++) {?> <option value="<?= html_safe($i) ?>" <?php if ($syslogEntriesToFetch == $i) { echo "selected=\"selected\"";}?>><?= html_safe($i) ?></option> <?php } ?> </select> </td> <td> <input id="submit_ids_log_widget" name="submit_ids_log_widget" type="submit" class="btn btn-primary formbtn" value="<?= gettext('Save') ?>"> </td> </tr> </table> </form></div><div id="ids_log-widgets" class="content-box" style="overflow:scroll;"> <table class="table table-striped" style="cellspacing:0; cellpadding:0"> <?php dump_clog($ids_logfile, $syslogEntriesToFetch); ?> </table></div><!-- needed to display the widget settings menu --><script>//<![CDATA[ $("#ids_log-configure").removeClass("disabled");//]]></script>
<?php/* Copyright (C) 2015 S. Linke <dev@devsash.de> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*/require_once("guiconfig.inc");$ids_logfile = '/var/log/suricata.log';if (!$config['widgets']['idslogfiltercount']){ $syslogEntriesToFetch = isset($config['syslog']['nentries']) ? $config['syslog']['nentries'] : 20;} else { $syslogEntriesToFetch = $config['widgets']['idslogfiltercount'];}if (is_numeric($_POST['logfiltercount'])) { $countReceived = $_POST['logfiltercount']; $config['widgets']['idslogfiltercount'] = $countReceived; write_config("Saved Widget IDS Log Filter Setting"); header(url_safe('Location: /index.php')); exit;}require_once('diag_logs_common.inc');?>
<?php for ($i = 1; $i <= 50; $i++) {?>
<?php if ($syslogEntriesToFetch == $i) { echo "selected=\"selected\"";}?>
<?php } ?>
<?php dump_clog($ids_logfile, $syslogEntriesToFetch); ?>