Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.15.188.75
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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 /
baltic /
web /
modules /
color /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
color-rtl.css
718
B
-rw-r--r--
color.css
1.41
KB
-rw-r--r--
color.info
291
B
-rw-r--r--
color.install
2.23
KB
-rw-r--r--
color.js
7.44
KB
-rw-r--r--
color.module
26.94
KB
-rw-r--r--
color.test
4.18
KB
-rw-r--r--
preview.html
562
B
-rw-r--r--
preview.js
1.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : preview.js
/** * @file * Attaches preview-related behavior for the Color module. */ (function ($) { Drupal.color = { callback: function(context, settings, form, farb, height, width) { // Solid background. $('#preview', form).css('backgroundColor', $('#palette input[name="palette[base]"]', form).val()); // Text preview $('#text', form).css('color', $('#palette input[name="palette[text]"]', form).val()); $('#text a, #text h2', form).css('color', $('#palette input[name="palette[link]"]', form).val()); // Set up gradients if there are some. var color_start, color_end; for (i in settings.gradients) { color_start = farb.unpack($('#palette input[name="palette[' + settings.gradients[i]['colors'][0] + ']"]', form).val()); color_end = farb.unpack($('#palette input[name="palette[' + settings.gradients[i]['colors'][1] + ']"]', form).val()); if (color_start && color_end) { var delta = []; for (j in color_start) { delta[j] = (color_end[j] - color_start[j]) / (settings.gradients[i]['vertical'] ? height[i] : width[i]); } var accum = color_start; // Render gradient lines. $('#gradient-' + i + ' > div', form).each(function () { for (j in accum) { accum[j] += delta[j]; } this.style.backgroundColor = farb.pack(accum); }); } } } }; })(jQuery);
Close