One Hat Cyber Team
Your IP:
216.73.216.75
Server IP:
213.186.33.17
Server:
Linux webm007.cluster106.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
Server Software:
Apache
PHP Version:
7.4.33
Create File
|
Create Folder
Execute
Dir :
~
/
home
/
tcherkas
/
micha.paris
/
modules
/
mod_nmap
/
audio
/
View File Name :
popuphtml5.php
<?php /** *Pro Magic Audio Player *This program is free software: you can redistribute it and/or modify it under the terms *of the GNU General Public License as published by the Free Software Foundation, *either version 3 of the License, or (at your option) any later version. * *This program is distributed in the hope that it will be useful, *but WITHOUT ANY WARRANTY; without even the implied warranty of *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *GNU General Public License for more details. * *You should have received a copy of the GNU General Public License *along with this program. If not, see <http://www.gnu.org/licenses/>. * *@author ProJoom *@copyright (C) 2008 - 2015 ProJoom *@link http://www.projoom.com/extensions/pro-magic-audio-player.html Official website **/ if (isset($_POST['senddata'])){ $sray = unserialize(base64_decode($_POST['senddata'])); $title = $sray['title']; $modid = $sray['id']; $plugin = $sray['plugin']; $pmap5w = $sray['pmap5w']; $pmap5ww = $sray['pmap5ww']; $pmap5h = $sray['pmap5h']; $nmapplbwdt = $sray['nmapplbwdt']; $pmapjspbg = $sray['pmapjspbg']; $pmapjstbg = $sray['pmapjstbg']; $divid = $sray['divid']; $objalign = $sray['objalign']; $popwidth = $sray['popwidth']; $popheight = $sray['popheight']; $nmaplay = $sray['nmaplay']; $nmaprepeat = $sray['nmaprepeat']; $mpjs = $sray['playlist']; $RURL = $sray['RURL']; $popextjsp = $sray['popextjsp']; if ($popextjsp){ $ext_jsp = 'downLoader: "' . $RURL . 'modules/mod_nmap/audio/html5/downloader.php",'; } $css = ' .pjpmap-'.(($plugin) ? 'pmapp' : 'pmap').'_' . $modid . '{ width:' . $pmap5w . '; background: none repeat scroll 0 0 ' . $pmapjspbg . ' ; } .tracks-'.(($plugin) ? 'pmapp' : 'pmap').'_' . $modid . '{ color:' . $pmapjstbg . '; } .pjpmap .progress-wrapper { width:' . $pmap5ww . '; } #' . $divid . '{ text-align:' . $objalign . '; } '; $engjs = ' var $PMAPJSE = jQuery.noConflict(); $PMAPJSE(document).ready(function() { window.innerWidth = ' . $popwidth . '; window.innerHeight = ' . $popheight . '; $PMAPJSE("#' . $divid . '").pjpmap(myPlaylist_' . $modid . ', { autoPlay:' . $nmaplay . ', repeatPlay:' . (($nmaprepeat == 1) ? "true" : "false") . ', '.$ext_jsp.' jPlayer:{ swfPath:"modules/mod_nmap/audio/html5/" } }, "'.(($plugin) ? 'pmapp' : 'pmap').'_' . $modid . '"); $PMAPJSE("#playlist-'.(($plugin) ? 'pmapp' : 'pmap').'_' . $modid . '").slimScroll({ height: "' . $pmap5h . '", color: "#fff", size: "' . $nmapplbwdt . 'px" }); }); ' . $mpjs . ' '; } ?> <!DOCTYPE html> <html> <head> <title><?php echo $title; ?></title> <base href="<? echo $RURL; ?>" /> <link rel="stylesheet" href="<? echo $RURL; ?>modules/mod_nmap/audio/html5/css/pmap.css" type="text/css" /> <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.1.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.js"></script> <script type="text/javascript" src="<? echo $RURL; ?>modules/mod_nmap/audio/html5/jsengine.js"></script> <style type="text/css"> <?php echo $css; ?> </style> <script type="text/javascript"> <?php echo $engjs; ?> </script> </head> <body bgcolor="#<?php echo $sray['defbg']; ?>"> <div id="<?php echo $divid; ?>"></div> </body> </html>