Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.121
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
julaysp1 /
public_html /
assets /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
wp
[ DIR ]
dr-xr-xr-x
2025-09-01 07:26
.htaccess
237
B
-r-xr-xr-x
2025-09-01 07:26
Chart.roundedBarCharts.js
5.81
KB
-rw-r--r--
2024-02-22 14:40
bcmath-min.js
14.24
KB
-rw-r--r--
2024-10-24 08:16
chart.js
7.95
KB
-rw-r--r--
2024-02-22 14:40
codemirror.js
1.53
KB
-rw-r--r--
2024-02-22 14:40
dashboard.js
15.99
KB
-rw-r--r--
2024-02-22 14:40
disabled.js
1.77
KB
-rw-r--r--
2024-10-24 08:16
file-upload.js
398
B
-rw-r--r--
2024-02-22 14:40
hoverable-collapse.js
806
B
-rw-r--r--
2024-02-22 14:40
jquery-file-upload.js
185
B
-rw-r--r--
2024-02-22 14:40
jquery.cookie.js
3.05
KB
-rw-r--r--
2024-02-22 14:40
off-canvas.js
188
B
-rw-r--r--
2024-02-22 14:40
pdf417-min.js
30.58
KB
-rw-r--r--
2024-10-24 08:16
select.dataTables.min.css
3.83
KB
-rw-r--r--
2024-02-22 14:40
select2.js
237
B
-rw-r--r--
2024-02-22 14:40
settings.js
3.79
KB
-rw-r--r--
2024-02-22 14:40
template.js
4.45
KB
-rw-r--r--
2024-02-22 14:40
todolist.js
952
B
-rw-r--r--
2024-02-22 14:40
typeahead.js
1.88
KB
-rw-r--r--
2024-02-22 14:40
Save
Rename
(function($) { 'use strict'; if ($('textarea[name=code-editable]').length) { var editableCodeMirror = CodeMirror.fromTextArea(document.getElementById('code-editable'), { mode: "javascript", theme: "ambiance", lineNumbers: true }); } if ($('#code-readonly').length) { var readOnlyCodeMirror = CodeMirror.fromTextArea(document.getElementById('code-readonly'), { mode: "javascript", theme: "ambiance", lineNumbers: true, readOnly: "nocursor" }); } //Use this method of there are multiple codes with same properties if ($('.multiple-codes').length) { var code_type = ''; var editorTextarea = $('.multiple-codes'); for (var i = 0; i < editorTextarea.length; i++) { $(editorTextarea[i]).attr('id', 'code-' + i); CodeMirror.fromTextArea(document.getElementById('code-' + i), { mode: "javascript", theme: "ambiance", lineNumbers: true, readOnly: "nocursor", maxHighlightLength: 0, workDelay: 0 }); } } //Use this method of there are multiple codes with same properties in shell mode if ($('.shell-mode').length) { var code_type = ''; var shellEditor = $('.shell-mode'); for (var i = 0; i < shellEditor.length; i++) { $(shellEditor[i]).attr('id', 'code-' + i); CodeMirror.fromTextArea(document.getElementById('code-' + i), { mode: "shell", theme: "ambiance", readOnly: "nocursor", maxHighlightLength: 0, workDelay: 0 }); } } })(jQuery);