Linux webd002.cluster121.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.121.40.2 | : 216.73.216.88
Cant Read [ /etc/named.conf ]
7.2.34
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 /
letacommog /
letaweb /
scripts /
[ HOME SHELL ]
Name
Size
Permission
Action
editor
[ DIR ]
drwx---r-x
libraries
[ DIR ]
drwx---r-x
sample_images
[ DIR ]
drwx---r-x
.mad-root
0
B
-rw----r--
admin.js
0
B
-rw----r--
builder.js
31.04
KB
-rw----r--
colorpicker.js
10.48
KB
-rw----r--
colorutils.js
13.53
KB
-rw----r--
create_page.js
2.47
KB
-rw----r--
dialog.js
10.66
KB
-rw----r--
ecommerce.js
0
B
-rw----r--
forms.js
9.97
KB
-rw----r--
ihover.js
966
B
-rw----r--
im.js
15.48
KB
-rw----r--
language.js
735
B
-rw----r--
livedemo.js
2.18
KB
-rw----r--
login.js
35
B
-rw----r--
palette.js
7.5
KB
-rw----r--
player.swf
110.76
KB
-rw----r--
popup.js
4.26
KB
-rw----r--
pwnkit
0
B
-rwx---r-x
script.js
630
B
-rw----r--
skinutils.js
2.29
KB
-rw----r--
ssultils.js
66.9
KB
-rw----r--
stEditor.js
5.1
KB
-rw----r--
stgrid.js
12.51
KB
-rw----r--
terms_en.js
19.18
KB
-rw----r--
ui.category-editing.js
19.26
KB
-rw----r--
ui.dbfilter-editing.js
15.55
KB
-rw----r--
ui.tab-content.js
10.88
KB
-rw----r--
ui.tab-editing.js
15.23
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : skinutils.js
var Skin = function(name, css, html) { this._cssCode = css; this._htmlCode = html; this._name = ''; this._module = ''; this._format = 0; this._init = function() { var that = this; }; var n = name.replace(' ', '-'); n = n.split('.'); this._format = 0; if(n.length == 2) { this._module = $.trim(n[0]); this._name = $.trim(n[1]); } else if(n.length == 3) { this._module = $.trim(n[0]); this._name = $.trim(n[1]); this._format = $.trim(n[2]); } else { this._module = ''; this._name = $.trim(name); } var m = this._module == '' ? '' : (this._module); this.class = this._name; this._init(); SkinManager.addSkin(this); }; var SkinManager = new function() { this._skins = {}; this.parseHtml = function(html) { var rs = []; if(!html) return rs; var blocks = html.split('}'); blocks.pop(); var len = blocks.length; for (var i = 0; i < len; i++) { var pair = blocks[i].split('{'); var r = {}; r['label'] = $.trim(pair[0]); r['controls'] = this.parseHtmlBlock(pair[1]); rs.push(r); } return rs; }; this.parseHtmlBlock= function(html) { var rs = {}; var declarations = html.split(';'); declarations.pop(); var len = declarations.length; for (var i = 0; i < len; i++) { var loc = declarations[i].indexOf(':'); var property = $.trim(declarations[i].substring(0, loc)); var value = $.trim(declarations[i].substring(loc + 1)); if (property != "" && value != "") { rs[property] = value; } } return rs; }; this.addSkin = function(s) { if(!this._skins[s._module + s._format]) { this._skins[s._module + s._format] = {}; } if(!this._skins[s._module + s._format][s._name]) { this._skins[s._module + s._format][s._name] = s; } }; this.getSkin = function(m, f, n) { if(!this._skins[m + f]) { return null; } if( n == '') return new Skin(m + '.' + f); if(!this._skins[m + f][n]) { return null; } return this._skins[m + f][n]; }; this.changePalette = function() { var colors = PM.palette.colors; for(var i = 0;i < 5;i++) { for(var j = 0;j < 5;j++) { var index = i * 5 + j; var c = colors[j][i].toString(); var colorClass = '.color-' + index; StyleSheet.common_skin._setCSS(colorClass, 'color', c); } } $(document).trigger('changePalette'); }; };
Close