Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
#!/usr/local/bin/php-cgi -q <?php /* * notify_monitor.php * * part of pfSense (https://..
Decoded Output download
#!/usr/local/bin/php-cgi -q
<?php
/*
* notify_monitor.php
*
* part of pfSense (https://www.pfsense.org)
* Copyright (c) 2017-2024 Rubicon Communications, LLC (Netgate)
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
try {
include_once('util.inc');
include_once('notices.inc');
$ret = try_lock("notifyqueue_running", 0);
if ($ret === NULL) {
//only 1 monitor needs to be running.
exit;
}
notices_sendqueue();
} catch (Exception $e) {
log_error(gettext("Unable to send notices queue") . ": " . $e->getMessage());
}
?>
Did this file decode correctly?
Original Code
#!/usr/local/bin/php-cgi -q
<?php
/*
* notify_monitor.php
*
* part of pfSense (https://www.pfsense.org)
* Copyright (c) 2017-2024 Rubicon Communications, LLC (Netgate)
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
try {
include_once('util.inc');
include_once('notices.inc');
$ret = try_lock("notifyqueue_running", 0);
if ($ret === NULL) {
//only 1 monitor needs to be running.
exit;
}
notices_sendqueue();
} catch (Exception $e) {
log_error(gettext("Unable to send notices queue") . ": " . $e->getMessage());
}
Function Calls
None |
Stats
MD5 | 346a5555e7be3ebd344bbc7a6424c0e2 |
Eval Count | 0 |
Decode Time | 74 ms |