Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
pr /
wp-content /
plugins /
feeds-for-youtube /
inc /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
Admin
[ DIR ]
drwxr-xr-x
Blocks
[ DIR ]
drwxr-xr-x
Builder
[ DIR ]
drwxr-xr-x
Customizer
[ DIR ]
drwxr-xr-x
Data
[ DIR ]
drwxr-xr-x
Helpers
[ DIR ]
drwxr-xr-x
Services
[ DIR ]
drwxr-xr-x
Container.php
1.05
KB
-rwxr-xr-x
Feed_Locator.php
12.99
KB
-rwxr-xr-x
HTTP_Request.php
1.87
KB
-rwxr-xr-x
PluginSilentUpgrader.php
22.29
KB
-rwxr-xr-x
PluginSilentUpgraderSkin.php
1.15
KB
-rwxr-xr-x
Response.php
642
B
-rwxr-xr-x
SBY_API_Connect.php
9.77
KB
-rwxr-xr-x
SBY_Cache.php
4.72
KB
-rwxr-xr-x
SBY_Cron_Updater.php
6.94
KB
-rwxr-xr-x
SBY_Display_Elements.php
35.4
KB
-rwxr-xr-x
SBY_Feed.php
57.79
KB
-rwxr-xr-x
SBY_GDPR_Integrations.php
2.01
KB
-rwxr-xr-x
SBY_Parse.php
12.28
KB
-rwxr-xr-x
SBY_Posts_Manager.php
7.25
KB
-rwxr-xr-x
SBY_RSS_Connect.php
4.74
KB
-rwxr-xr-x
SBY_Settings.php
16.74
KB
-rwxr-xr-x
SBY_Vars.php
1.03
KB
-rwxr-xr-x
SBY_View.php
777
B
-rwxr-xr-x
SBY_WP_Post.php
6.66
KB
-rwxr-xr-x
SB_YouTube_Data_Encryption.php
3.83
KB
-rwxr-xr-x
SbyWidget.php
2.36
KB
-rwxr-xr-x
class-install-skin.php
584
B
-rwxr-xr-x
sby-functions.php
37.33
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SBY_GDPR_Integrations.php
<?php /** * Class SBY_GDPR_Integrations * * Adds GDPR related workarounds for third-party plugins: * https://wordpress.org/plugins/cookie-law-info/ * * @since 2.6/5.9 */ namespace SmashBalloon\YouTubeFeed; class SBY_GDPR_Integrations { /** * Undoing of Cookie Notice's Twitter Feed related code * needs to be done late. */ public static function init() { } /** * Whether or not consent plugins that Twitter Feed * is compatible with are active. * * @return bool|string */ public static function gdpr_plugins_active() { if ( class_exists( 'Cookie_Notice' ) ) { return 'Cookie Notice by dFactory'; } if ( function_exists( 'run_cookie_law_info' ) || class_exists( 'Cookie_Law_Info' ) ) { return 'GDPR Cookie Consent by WebToffee'; } if ( class_exists( 'Cookiebot_WP' ) ) { return 'Cookiebot by Cybot A/S'; } if ( class_exists( 'COMPLIANZ' ) ) { return 'Complianz by Really Simple Plugins'; } if ( function_exists('BorlabsCookieHelper') ) { return 'Borlabs Cookie by Borlabs'; } return false; } /** * GDPR features can be added automatically, forced enabled, * or forced disabled. * * @param $settings * * @return bool */ public static function doing_gdpr( $settings ) { $gdpr = isset( $settings['global_settings']['gdpr'] ) ? $settings['global_settings']['gdpr'] : 'auto'; if ( $gdpr === 'no' ) { return false; } if ( $gdpr === 'yes' ) { return true; } return (SBY_GDPR_Integrations::gdpr_plugins_active() !== false); } /** * GDPR features are reliant on the image resizing features * * @param bool $retest * * @return bool */ public static function gdpr_tests_successful( $retest = false ) { return true; } public static function gdpr_tests_error_message() { return ''; } /** * @return array|mixed * * @since 2.0 */ public static function statuses() { $statuses_option = get_option( 'sby_statuses', array() ); $return = isset( $statuses_option['gdpr'] ) ? $statuses_option['gdpr'] : array(); return $return; } }
Close