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 : create_page.js
//script for handle creating page process var current_step = current_step || 1; $(document).ready(function() { doCreate(current_step); }); //process current creating page step function doCreate(step) { $.ajax({ type: 'POST', url: window.url, data: {step: step, id : window.id,YII_CSRF_TOKEN:window.YII_CSRF_TOKEN}, error: function() { doUndo(); }, success: function (data) { try { var json = $.parseJSON(data); var success = json.success; if(typeof success != 'undefined' && success == 1) { if(typeof json.page_name != 'undefined') { window.page_name = json.page_name; } if(typeof json.page_id != 'undefined') { window.page_id = json.page_id; } if(typeof json.edit_site_url != 'undefined') { $('#edit_new_site_btn').attr('href', json.edit_site_url); } if(typeof json.next != 'undefined') { window.current_step = json.next; var name = json.name; $('#progress_description').html(name); var percent = json.percent; //console.log(percent + '%'); $('#progress_bar_progress').css('width', percent + '%'); $('#progress_percent_indicator').html(percent + '%'); doCreate(window.current_step); } else if(typeof json.finish != 'undefined' && json.finish == 1) { //$('#progress_bar_progress').css('width', '100%'); var name = json.name; $('#progress_description').html(name); $('#progress_bar_progress').css('width', '100%'); $('#progress_percent_indicator').html('100%'); setTimeout(function() { $('#success_container').siblings().fadeOut(); $('#success_container').html(json.html); $('#success_container').animate( { opacity: 'toggle', }, 1000); }, 2000); } } else { doUndo(); $('#fail_container').siblings().hide(); $('#fail_container').animate( { opacity: 'toggle' }, 4000); } } catch(e) { doUndo(); $('#undo_container').hide(); $('#fail_container').siblings().fadeOut(); $('#fail_container').animate( { opacity: 'toggle' }, 4000); } } }); } //function to undo if the creation failed function doUndo() { $('#undo_container').show(); $.ajax({ type: 'POST', url: 'doUndo', data: {id : window.id,YII_CSRF_TOKEN:window.YII_CSRF_TOKEN}, success: function (data) { //window.location.href = data; } }); }
Close