Linux webm001.cluster111.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.111.20.1 | : 216.73.216.115
Cant Read [ /etc/named.conf ]
7.4.33
osteocoeek
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
osteocoeek /
holistea.eu /
dup-installer /
assets /
[ HOME SHELL ]
Name
Size
Permission
Action
font-awesome
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
inc.css.php
34.33
KB
-rw-r--r--
inc.js.php
6.93
KB
-rw-r--r--
inc.libs.css.php
40
KB
-rw-r--r--
inc.libs.js.php
528.08
KB
-rw-r--r--
index.php
15
B
-rw-r--r--
normalize.css
5.99
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : inc.js.php
<?php defined("DUPXABSPATH") or die(""); ?> <script> //Unique namespace DUPX = new Object(); DUPX.Util = new Object(); DUPX.Const = new Object(); DUPX.GLB_DEBUG = <?php echo $paramsManager->getValue(DUPX_Paramas_Manager::PARAM_DEBUG) ? 'true' : 'false'; ?>; DUPX.parseJSON = function(mixData) { // if mixData is already a object, Then don't parse it if (typeof mixData === 'object' && mixData !== null) { return mixData; } try { var parsed = JSON.parse(mixData); return parsed; } catch (e) { console.log("JSON parse failed - 1"); console.log(mixData); } if (mixData.indexOf('[') > -1 && mixData.indexOf('{') > -1) { if (mixData.indexOf('{') < mixData.indexOf('[')) { var startBracket = '{'; var endBracket = '}'; } else { var startBracket = '['; var endBracket = ']'; } } else if (mixData.indexOf('[') > -1 && mixData.indexOf('{') === -1) { var startBracket = '['; var endBracket = ']'; } else { var startBracket = '{'; var endBracket = '}'; } var jsonStartPos = mixData.indexOf(startBracket); var jsonLastPos = mixData.lastIndexOf(endBracket); if (jsonStartPos > -1 && jsonLastPos > -1) { var expectedJsonStr = mixData.slice(jsonStartPos, jsonLastPos + 1); try { var parsed = JSON.parse(expectedJsonStr); return parsed; } catch (e) { console.log("JSON parse failed - 2"); console.log(mixData); throw e; return false; } } throw "could not parse the JSON"; return false; } DUPX.showProgressBar = function () { DUPX.animateProgressBar('progress-bar'); $('#ajaxerr-area').hide(); $('#progress-area').show(); } DUPX.hideProgressBar = function () { $('#progress-area').hide(100); $('#ajaxerr-area').fadeIn(400); } DUPX.animateProgressBar = function(id) { //Create Progress Bar var $mainbar = $("#" + id); $mainbar.progressbar({ value: 100 }); $mainbar.height(25); runAnimation($mainbar); function runAnimation($pb) { $pb.css({ "padding-left": "0%", "padding-right": "90%" }); $pb.progressbar("option", "value", 100); $pb.animate({ paddingLeft: "90%", paddingRight: "0%" }, 3500, "linear", function () { runAnimation($pb); }); } } /* * DUPX.requestAPI({ * operation : '/cpnl/create_token/', * data : params, * callback : function(){}); */ DUPX.requestAPI = function(obj) { var timeout = obj.timeout || 120000; //default to 120 seconds var apiPath = ( obj.operation.substr(-1) !== '/') ? apiPath += '/' : obj.operation; var urlPath = window.location.pathname; var pathName = urlPath.substring(0, urlPath.lastIndexOf("/") + 1); var requestURI = window.location.origin + pathName + 'api/router.php' + apiPath + window.location.search for (var key in obj.params) { if (obj.params.hasOwnProperty(key) && typeof(obj.params[key]) != 'undefined') { obj.params[key] = encodeURIComponent(obj.params[key].replace(/&/g, "&")); } } var tokenData = <?php $paramManager = DUPX_Paramas_Manager::getInstance(); echo DupProSnapJsonU::wp_json_encode_pprint(array( DUPX_Paramas_Manager::PARAM_ROUTER_ACTION => $paramManager->getValue(DUPX_Paramas_Manager::PARAM_ROUTER_ACTION), DUPX_Security::ROUTER_TOKEN => DUPX_CSRF::generate($paramManager->getValue(DUPX_Paramas_Manager::PARAM_ROUTER_ACTION)) )); ?>; var ajaxData = $.extend({}, tokenData, obj.params); if (DUPX.GLB_DEBUG) { console.log('=============================================================='); console.log('API REQUEST: ' + obj.operation); console.log(obj.params); } //Requests to API are capped at 2 minutes $.ajax({ type: "POST", cache: false, timeout: timeout, url: requestURI, data: ajaxData, success: function(respData) { if (DUPX.GLB_DEBUG) console.log(respData); try { var data = DUPX.parseJSON(respData); } catch(err) { console.error(err); console.error('JSON parse failed for response data: ' + respData); var data = respData; } obj.callback(data); }, error: function(data) { if (DUPX.GLB_DEBUG) console.log(data); obj.callback(data); } }); } DUPX.toggleAll = function(id) { $(id + " *[data-type='toggle']").each(function() { $(this).trigger('click'); }); } DUPX.toggleClick = function() { var button = $(this); var src = 0; var id = button.attr('data-target'); var text = button.text().replace(/\+|\-/, ""); var icon = button.find('i.fa'); var target = $(id); var list = new Array(); var style = [ { open: "fa-minus-square", close: "fa-plus-square" }, { open: "fa-caret-down", close: "fa-caret-right" }]; //Create src for (i = 0; i < style.length; i++) { if ($(icon).hasClass(style[i].open) || $(icon).hasClass(style[i].close)) { src = i; break; } } //Build remove list for (i = 0; i < style.length; i++) { list.push(style[i].open); list.push(style[i].close); } $(icon).removeClass(list.join(" ")); if (target.is(':hidden') ) { (icon.length) ? $(icon).addClass(style[src].open ) : button.html("- " + text ); button.removeClass('open').addClass('close'); target.show().removeClass('no-display'); } else { (icon.length) ? $(icon).addClass(style[src].close) : button.html("+ " + text ); button.removeClass('close').addClass('open'); target.hide().addClass('no-display'); } } DUPX.Util.formatBytes = function (bytes,decimals) { if(bytes == 0) return '0 Byte'; var k = 1000; var dm = decimals + 1 || 3; var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; var i = Math.floor(Math.log(bytes) / Math.log(k)); return (bytes / Math.pow(k, i)).toPrecision(dm) + ' ' + sizes[i]; } $(document).ready(function() { <?php if ($GLOBALS['DUPX_DEBUG']) : ?> $("div.dupx-debug input[type=hidden], div.dupx-debug textarea").each(function() { var label = '<label>' + $(this).attr('name') + ':</label>'; $(this).before(label); $(this).after('<br/>'); }); $("div.dupx-debug input[type=hidden]").each(function() { $(this).attr('type', 'text'); }); $("div.dupx-debug").prepend('<div class="dupx-debug-hdr">Debug View</div>'); <?php endif; ?> DUPX.loadQtip = function() { //Look for tooltip data $('i[data-tooltip!=""]').qtip({ content: { attr: 'data-tooltip', title: { text: function() { return $(this).attr('data-tooltip-title'); } } }, style: { classes: 'qtip-light qtip-rounded qtip-shadow', width: 500 }, position: { my: 'top left', at: 'bottom center' } }); } DUPX.loadQtip(); }); </script> <?php DUPX_U_Html::js();
Close