⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.112
Server IP:
104.21.10.174
Server:
Linux linux28.yoncu.com 4.18.0-553.8.1.el8_10.x86_64 #1 SMP Tue Jul 2 07:26:33 EDT 2024 x86_64
Server Software:
Apache
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
aybarstu
/
public_html
/
wp-content
/
mu-plugins
/
View File Name :
automation-by-installatron.php
<?php /* Plugin Name: WordPress automation by oPanel APP Installer Description: Management of this WordPress site is provided by oPanel APP Installer. */ // This plugin was added because Automatic Updates, Automatic Backups, and // other features are managed externally by oPanel APP Installer. // To block this plugin, create an empty file in the same directory named: // block-automation-by-installatron.php // Turn off WordPress automatic updates since these are managed externally. // If you remove this to re-enable WordPress's automatic updates then it's // advised to disable auto-updating in oPanel APP Installer. add_filter( 'automatic_updater_disabled', '__return_true', -9999 ); // Disable WordPress site health test for Automatic Updates since these are // managed externally by oPanel APP Installer. function installatron_filter_site_status_tests($tests) { unset($tests['async']['background_updates']); return $tests; } add_filter('site_status_tests', 'installatron_filter_site_status_tests');