HEX
Server: LiteSpeed
System: Linux server25.dn-server.com 4.18.0-477.13.1.lve.el7h.x86_64 #1 SMP Thu Jun 1 16:49:27 UTC 2023 x86_64
User: farzache (3006)
PHP: 7.4.33
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/farzache/public_html/wp-content/plugins/fastdup/fastdup.php
<?php

/**
 * Plugin Name:       FastDup
 * Plugin URI:        https://ninjateam.gitbook.io/fastdup/
 * Description:       WordPress Fastest Duplicator and Migration
 * Version:           2.7.2
 * Author:            Ninja Team
 * Author URI:        https://ninjateam.org/
 * License:           GPLv2 or later
 * License URI:       http://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain:       fastdup
 * Domain Path:       /languages
 */

/**
 * MAKE SURE WE DON'T EXPOSE ANY INFO IF CALLED DIRECTLY
 */
if (!function_exists('add_action')) {
  die;
}

define('FAST_DUP_BASE_NAME', plugin_basename(__FILE__));

/**
 * AUTOLOADER
 */
if (file_exists(dirname(__FILE__) . '/vendor/autoload.php')) {
  require_once dirname(__FILE__) . '/vendor/autoload.php';
}

/**
 * DEFINE
 */
if (file_exists(dirname(__FILE__) . '/define.php')) {
  require_once dirname(__FILE__) . '/define.php';
}

/**
 * REGISTER ACTIVATION AND DEACTIVATION HOOKS
 */
register_activation_hook(__FILE__, array('NJT\\FastDup\\Plugin', 'activate'));
register_deactivation_hook(__FILE__, array('NJT\\FastDup\\Plugin', 'deactivate'));

/**
 * INITIALIZE PLUGIN
 */
function njt_fastdup_init()
{
  $njt_fastdup = NJT\FastDup\Plugin::get_instance();
  $njt_fastdup_admin = NJT\FastDup\Admin::get_instance();
  $njt_fastdup_api = NJT\FastDup\Endpoint::get_instance();
}

add_action('plugins_loaded', 'njt_fastdup_init');