✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ premium290.web-hosting.com ​🇻​♯➤ 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 63.250.38.37 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.105
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/tdhomesa/tdtravelandlogistics.com/wp-content/plugins/better-wp-security/core//container.php
<?php

namespace iThemesSecurity;

use iThemesSecurity\Lib\REST;
use iThemesSecurity\Lib\Site_Types;
use iThemesSecurity\Lib\Stellar_Container;
use iThemesSecurity\Strauss\StellarWP\Telemetry\Config as Telemetry;
use iThemesSecurity\Strauss\StellarWP\Telemetry\Events\Event as TelemetryEvent;
use ITSEC_Lib_Headers;
use ITSEC_Lib_Upgrader;
use iThemesSecurity\Strauss\Pimple\Container;
use wpdb;

return static function ( Container $c ) {
	$c[ wpdb::class ] = static function () {
		return $GLOBALS['wpdb'];
	};

	$c[ ITSEC_Lib_Upgrader::class ] = static function () {
		return new ITSEC_Lib_Upgrader();
	};

	$c[ \ITSEC_Modules::class ] = \ITSEC_Modules::get_instance();

	$c[ \ITSEC_Lockout::class ] = static function () {
		return $GLOBALS['itsec_lockout'];
	};

	$c[ Actor\Multi_Actor_Factory::class ] = static function ( Container $c ) {
		return new Actor\Multi_Actor_Factory( ...$c['actor.factories'] );
	};

	$c['actor.factories'] = static function () {
		return [
			new Actor\User_Factory(),
			new Actor\Lockout_Module_Factory(),
		];
	};

	$c['ban-hosts.sources'] = static function () {
		return [];
	};

	$c['ban-hosts.repositories'] = static function () {
		return [];
	};

	$c['dashboard.cards'] = static function () {
		return [];
	};

	$c['import-export.sources'] = static function ( Container $c ) {
		return [
			$c[ \ITSEC_Modules::class ],
		];
	};

	$c['rest.controllers'] = static function () {
		return [];
	};

	$c[ Ban_Hosts\Multi_Repository::class ] = static function ( Container $c ) {
		return new Ban_Hosts\Multi_Repository(
			...array_map( [ $c, 'offsetGet' ], $c['ban-hosts.repositories'] )
		);
	};

	$c[ Ban_Hosts\Source::class ] = static function ( Container $c ) {
		return new Ban_Hosts\Chain_Source(
			...array_map( [ $c, 'offsetGet' ], $c['ban-hosts.repositories'] ),
			...array_map( [ $c, 'offsetGet' ], $c['ban-hosts.sources'] )
		);
	};

	$c[ Ban_Hosts\REST::class ] = static function ( Container $c ) {
		return new Ban_Hosts\REST(
			$c[ Ban_Hosts\Multi_Repository::class ],
			$c[ Actor\Multi_Actor_Factory::class ]
		);
	};

	$c[ Site_Types\Registry::class ] = static function () {
		return ( new Site_Types\Registry() )
			->register( new Site_Types\Type\Ecommerce() )
			->register( new Site_Types\Type\Network() )
			->register( new Site_Types\Type\Non_Profit() )
			->register( new Site_Types\Type\Blog() )
			->register( new Site_Types\Type\Portfolio() )
			->register( new Site_Types\Type\Brochure() );
	};

	$c[ Site_Types\Defaults::class ] = static function () {
		return new Site_Types\Defaults();
	};

	$c[ Lib\Tools\Tools_Registry::class ] = static function () {
		return new Lib\Tools\Tools_Registry();
	};

	$c[ Lib\Tools\Tools_Runner::class ] = static function ( Container $c ) {
		return new Lib\Tools\Tools_Runner( $c[ Lib\Tools\Tools_Registry::class ] );
	};

	$c[ REST\Modules_Controller::class ] = static function () {
		return new REST\Modules_Controller();
	};

	$c[ REST\Settings_Controller::class ] = static function () {
		return new REST\Settings_Controller();
	};

	$c[ REST\Site_Types_Controller::class ] = static function ( Container $c ) {
		return new REST\Site_Types_Controller(
			$c[ Site_Types\Registry::class ],
			$c[ Site_Types\Defaults::class ]
		);
	};

	$c[ REST\Tools_Controller::class ] = static function ( Container $c ) {
		return new REST\Tools_Controller(
			$c[ Lib\Tools\Tools_Registry::class ],
			$c[ Lib\Tools\Tools_Runner::class ]
		);
	};

	$c[ REST\User_Actions_Controller::class ] = static function () {
		return new REST\User_Actions_Controller();
	};

	$c[ REST\Users_Controller_Extension::class ] = static function () {
		return new REST\Users_Controller_Extension();
	};

	$c[ REST\Logs_Controller::class ] = static function () {
		return new REST\Logs_Controller();
	};

	$c[ REST\Geolocation_Controller::class ] = static function () {
		return new REST\Geolocation_Controller();
	};

	$c[ Rest\Lockouts_Controller::class ] = static function ( Container $c ) {
		return new Rest\Lockouts_Controller(
			$c[ \ITSEC_Lockout::class ]
		);
	};

	$c[ REST\Lockout_Stats_Controller::class ] = static function ( Container $c ) {
		return new REST\Lockout_Stats_Controller(
			$c[ \ITSEC_Lockout::class ]
		);
	};

	$c[ TelemetryEvent::class ] = static function ( Container $c ) {
		return new TelemetryEvent( $c[ Strauss\StellarWP\Telemetry\Telemetry\Telemetry::class ] );
	};

	$c[ Telemetry::class ] = static function ( Container $c ) {
		$telemetry = new Telemetry();
		$telemetry::set_container( new Stellar_Container( $c ) );
		$telemetry::set_hook_prefix( 'ithemes-security' );
		$telemetry::set_stellar_slug( 'solid-security' );

		return $telemetry;
	};

	$c[ Headers\ITSEC_Headers_Sanitizer::class ] = static function () {
		return new Headers\ITSEC_Headers_Sanitizer();
	};
};


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


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
22 Jun 2026 6.38 AM
tdhomesa / tdhomesa
0755
Contracts
--
29 May 2026 10.47 AM
tdhomesa / tdhomesa
0755
Exception
--
29 May 2026 10.47 AM
tdhomesa / tdhomesa
0755
admin-pages
--
29 May 2026 10.47 AM
tdhomesa / tdhomesa
0755
deprecated
--
29 May 2026 10.47 AM
tdhomesa / tdhomesa
0755
img
--
29 May 2026 10.47 AM
tdhomesa / tdhomesa
0755
integrations
--
29 May 2026 10.47 AM
tdhomesa / tdhomesa
0755
lib
--
29 May 2026 10.47 AM
tdhomesa / tdhomesa
0755
modules
--
29 May 2026 10.47 AM
tdhomesa / tdhomesa
0755
packages
--
29 May 2026 10.47 AM
tdhomesa / tdhomesa
0755
sync-verbs
--
29 May 2026 10.47 AM
tdhomesa / tdhomesa
0755
templates
--
29 May 2026 10.47 AM
tdhomesa / tdhomesa
0755
container.php
4.677 KB
11 Feb 2026 6.32 PM
tdhomesa / tdhomesa
0644
core.php
37.65 KB
12 May 2026 6.59 AM
tdhomesa / tdhomesa
0644
files.php
2.84 KB
28 Jul 2021 10.51 PM
tdhomesa / tdhomesa
0644
history.txt
75.518 KB
17 Oct 2023 8.28 PM
tdhomesa / tdhomesa
0644
index.php
0.033 KB
17 Oct 2023 8.28 PM
tdhomesa / tdhomesa
0644
lib.php
75.049 KB
12 May 2026 6.59 AM
tdhomesa / tdhomesa
0644
lockout.php
47.365 KB
12 May 2026 6.59 AM
tdhomesa / tdhomesa
0644
module-schema.json
16.711 KB
16 Sep 2025 10.04 PM
tdhomesa / tdhomesa
0644
modules.php
32.6 KB
12 May 2026 6.59 AM
tdhomesa / tdhomesa
0644
notify.php
8.703 KB
12 May 2026 6.59 AM
tdhomesa / tdhomesa
0644
response.php
11.627 KB
11 Feb 2026 6.32 PM
tdhomesa / tdhomesa
0644
rest.php
10.855 KB
12 May 2026 6.59 AM
tdhomesa / tdhomesa
0644
setup.php
15.266 KB
22 Mar 2024 8.49 PM
tdhomesa / tdhomesa
0644

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