Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
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
/
var /
www /
html /
insepet /
tienda /
js /
cropper /
[ HOME SHELL ]
Name
Size
Permission
Action
builder.LICENSE
1.08
KB
-rwxrwxrwx
builder.js
3.28
KB
-rwxrwxrwx
cropper.LICENSE
2.56
KB
-rwxrwxrwx
cropper.css
1.99
KB
-rwxrwxrwx
cropper.js
16.79
KB
-rwxrwxrwx
dragdrop.LICENSE
1.17
KB
-rwxrwxrwx
dragdrop.js
28.92
KB
-rwxrwxrwx
index.php
1.29
KB
-rwxrwxrwx
loader.js
1.68
KB
-rwxrwxrwx
prototype.LICENSE
1.07
KB
-rwxrwxrwx
prototype.js
53.85
KB
-rwxrwxrwx
scriptaculous.LICENSE
1.08
KB
-rwxrwxrwx
scriptaculous.js
2.19
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : loader.js
var CropImageManager = { curCrop: null, init: function() { this.attachCropper(); }, onChange: function(e) { var vals = $F(Event.element(e)).split('|'); this.setImage(vals[0], vals[1], vals[2]); }, setImage: function(imgSrc, w, h) { $('testImage').src = imgSrc; /*$('testImage').width = w; $('testImage').height = h;*/ this.attachCropper(w, h); }, attachCropper: function(maxW, maxH) { var vals = $F($('imageChoice')).split('|'); if (!maxW) maxW = vals[1]; if (!maxH) maxH = vals[2]; if (this.curCrop == null) this.curCrop = new Cropper.Img('testImage', { minWidth: maxW, minHeight: maxH, maxWidth: maxW, maxHeight: maxH, onEndCrop: onEndCrop } ); else this.curCrop.reset(maxW, maxH, maxW, maxH); this.curCrop.aeraCoords = 0; }, removeCropper: function() { if (this.curCrop != null) this.curCrop.remove(); }, resetCropper: function() { this.attachCropper(); } }; function onEndCrop(coords, dimensions) { var vals = $F($('imageChoice')).split('|'); var id_image = vals[3]; if (!image) { image = id_image; image_check = id_image; } if (image != id_image) image = id_image; else { if (image != image_check && navigator.appName != "Microsoft Internet Explorer") image_check = image; else { $(id_image + '_x1').value = coords.x1; $(id_image + '_y1').value = coords.y1; $(id_image + '_x2').value = coords.x2; $(id_image + '_y2').value = coords.y2; } } } Event.observe(window, 'load', function() { CropImageManager.init(); Event.observe($('imageChoice'), 'change', CropImageManager.onChange.bindAsEventListener(CropImageManager), false ); } ); var image; var image_check;
Close