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.217.99
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 : stEditor.js
angular.module('ngCkeditor', []) .run(['$q', '$timeout', function($q, $timeout) { var $defer, loaded = false; $defer = $q.defer(); if (angular.isUndefined(CKEDITOR)) { throw new Error('CKEDITOR not found'); } CKEDITOR.disableAutoInline = true; function checkLoaded() { if (CKEDITOR.status === 'loaded') { loaded = true; $defer.resolve(); } else { checkLoaded(); } } CKEDITOR.on('loaded', checkLoaded); $timeout(checkLoaded, 100); }]) .directive('ckeditor', ['$timeout', '$q', function ($timeout, $q) { 'use strict'; return { restrict: 'AC', require: ['ngModel', '^?form'], scope: false, link: function (scope, element, attrs, ctrls) { var $defer, loaded = false; var ngModel = ctrls[0]; var form = ctrls[1] || null; var EMPTY_HTML = '<p></p>', isTextarea = element[0].tagName.toLowerCase() === 'textarea', data = [], isReady = false; if (!isTextarea) { element.attr('contenteditable', true); } var onLoad = function () { var options = { toolbar: 'full', toolbar_full: [ //jshint ignore:line { name: 'basicstyles', items: [ 'Bold', 'Italic', 'Strike', 'Underline' ] }, { name: 'paragraph', items: [ 'BulletedList', 'NumberedList', 'Blockquote' ] }, { name: 'editing', items: ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] }, { name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] }, { name: 'tools', items: [ 'SpellChecker', 'Maximize' ] }, '/', { name: 'styles', items: [ 'Format', 'FontSize', 'PaletteTextColor', 'PasteText', 'PasteFromWord', 'RemoveFormat' ] }, { name: 'insert', items: [ 'Image', 'Table', 'SpecialChar' ] }, { name: 'forms', items: [ 'Outdent', 'Indent' ] }, { name: 'clipboard', items: [ 'Undo', 'Redo' ] }, { name: 'document', items: [ 'PageBreak', 'Source' ] } ], disableNativeSpellChecker: true, uiColor: '#FAFAFA', height: '400px', width: '100%' }; options = angular.extend(options, scope[attrs.ckeditor]); var instance = (isTextarea) ? CKEDITOR.replace(element[0], options) : CKEDITOR.inline(element[0], options), configLoaderDef = $q.defer(); element.bind('$destroy', function () { instance.destroy( false //If the instance is replacing a DOM element, this parameter indicates whether or not to update the element with the instance contents. ); }); var setModelData = function(setPristine) { var data = instance.getData(); if (data === '') { data = null; } $timeout(function () { // for key up event if (setPristine !== true || data !== ngModel.$viewValue) ngModel.$setViewValue(data); if (setPristine === true && form) form.$setPristine(); }, 0); }, onUpdateModelData = function(setPristine) { if (!data.length) { return; } var item = data.pop() || EMPTY_HTML; isReady = false; instance.setData(item, function () { setModelData(setPristine); isReady = true; }); }; //instance.on('pasteState', setModelData); instance.on('change', setModelData); instance.on('blur', setModelData); //instance.on('key', setModelData); // for source view instance.on('instanceReady', function() { scope.$broadcast('ckeditor.ready'); scope.$apply(function() { onUpdateModelData(true); }); instance.document.on('keyup', setModelData); }); instance.on('customConfigLoaded', function() { configLoaderDef.resolve(); }); ngModel.$render = function() { data.push(ngModel.$viewValue); if (isReady) { onUpdateModelData(); } }; }; if (CKEDITOR.status === 'loaded') { loaded = true; } if (loaded) { onLoad(); } else { $defer.promise.then(onLoad); } } }; }]);
Close