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.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iscreen.apps-dev.fr /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
admin
[ DIR ]
drwxrwxrwx
2020-12-09 15:22
cropper
[ DIR ]
drwxrwxrwx
2020-12-09 15:22
jquery
[ DIR ]
drwxrwxrwx
2020-12-09 15:22
tiny_mce
[ DIR ]
drwxrwxrwx
2020-12-09 15:22
vendor
[ DIR ]
drwxrwxrwx
2020-12-09 15:22
.htaccess
510
B
-rwxrwxrwx
2023-01-18 07:38
admin-categories-tree.js
9.16
KB
-rwxrwxrwx
2019-04-30 18:42
admin.js
47.52
KB
-rwxrwxrwx
2019-04-30 18:42
date.LICENSE
34.94
KB
-rwxrwxrwx
2019-04-30 18:42
date.js
11.25
KB
-rwxrwxrwx
2019-04-30 18:42
fileuploader.LICENSE
786
B
-rwxrwxrwx
2019-04-30 18:42
fileuploader.js
32.21
KB
-rwxrwxrwx
2019-04-30 18:42
hookLiveEdit.js
9.41
KB
-rwxrwxrwx
2019-04-30 18:42
index.php
29.14
KB
-rwxrwxrwx
2023-01-18 07:38
retro-compat.js.php
6.96
KB
-rwxrwxrwx
2019-04-30 18:42
rtl.LICENSE
1.05
KB
-rwxrwxrwx
2019-04-30 18:42
rtl.js
1.41
KB
-rwxrwxrwx
2019-04-30 18:42
tools.js
18.9
KB
-rwxrwxrwx
2019-04-30 18:42
unicode_hack.LICENSE
311
B
-rwxrwxrwx
2019-04-30 18:42
validate.js
21.27
KB
-rwxrwxrwx
2019-04-30 18:42
Save
Rename
/* * 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 () { $('[style]').each(function (index) { var styles_old = $(this).attr('style'); styles_old = styles_old.split(';'); var styles = {}; var s = ''; var i = ''; var v = ''; 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 */