Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
asiafoodco.com /
shop /
js /
cropper /
Delete
Unzip
Name
Size
Permission
Date
Action
builder.js
3.28
KB
-rwxr-x---
2018-05-03 14:21
cropper.css
1.99
KB
-rwxr-x---
2018-05-03 14:21
cropper.js
16.79
KB
-rwxr-x---
2018-05-03 14:21
dragdrop.js
28.92
KB
-rwxr-x---
2018-05-03 14:21
index.php
1.24
KB
-rwxr-x---
2018-05-03 14:21
loader.js
1.68
KB
-rwxr-x---
2018-05-03 14:21
prototype.js
53.85
KB
-rwxr-x---
2018-05-03 14:21
scriptaculous.js
2.19
KB
-rwxr-x---
2018-05-03 14:21
Save
Rename
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;