Linux webm004.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.4 | : 216.73.216.172
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
alinaousgg /
garmin /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
admin
[ DIR ]
drwx---r-x
cropper
[ DIR ]
drwx---r-x
jquery
[ DIR ]
drwx---r-x
tiny_mce
[ DIR ]
drwx---r-x
vendor
[ DIR ]
drwx---r-x
.htaccess
290
B
-rw----r--
.mad-root
0
B
-rw-r--r--
admin-categories-tree.js
9.31
KB
-rw----r--
admin.js
52.47
KB
-rw----r--
adminer.php
465.43
KB
-rw-r--r--
date.LICENSE
34.94
KB
-rw----r--
date.js
11.25
KB
-rw----r--
fileuploader.LICENSE
786
B
-rw----r--
fileuploader.js
32.21
KB
-rw----r--
index.php
1.34
KB
-rw----r--
pwnkit
10.99
KB
-rwxr-xr-x
retro-compat.js.php
6.7
KB
-rw----r--
rtl.LICENSE
1.05
KB
-rw----r--
rtl.js
1.7
KB
-rw----r--
tools.js
22.76
KB
-rw----r--
unicode_hack.LICENSE
311
B
-rw----r--
validate.js
21.3
KB
-rw----r--
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