Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.217.16
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
media /
regularlabs /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
codemirror.js
11.11
KB
-rw-r--r--
2026-06-10 18:30
codemirror.min.js
5.74
KB
-rw-r--r--
2026-06-10 18:30
color.js
33.64
KB
-rw-r--r--
2026-06-10 18:30
color.min.js
15.3
KB
-rw-r--r--
2026-06-10 18:30
colorpicker.js
6.34
KB
-rw-r--r--
2026-06-10 18:30
colorpicker.min.js
2.91
KB
-rw-r--r--
2026-06-10 18:30
form.js
9.23
KB
-rw-r--r--
2026-06-10 18:30
form.min.js
4
KB
-rw-r--r--
2026-06-10 18:30
jquery.cookie.js
3.66
KB
-rw-r--r--
2026-06-10 18:30
jquery.cookie.min.js
1.86
KB
-rw-r--r--
2026-06-10 18:30
multiselect.js
9.74
KB
-rw-r--r--
2026-06-10 18:30
multiselect.min.js
5.39
KB
-rw-r--r--
2026-06-10 18:30
regular.js
18.38
KB
-rw-r--r--
2026-06-10 18:30
regular.min.js
6.89
KB
-rw-r--r--
2026-06-10 18:30
script.js
10.37
KB
-rw-r--r--
2026-06-10 18:30
script.min.js
4.96
KB
-rw-r--r--
2026-06-10 18:30
simplecategories.js
1.08
KB
-rw-r--r--
2026-06-10 18:30
simplecategories.min.js
622
B
-rw-r--r--
2026-06-10 18:30
textareaplus.js
910
B
-rw-r--r--
2026-06-10 18:30
textareaplus.min.js
522
B
-rw-r--r--
2026-06-10 18:30
toggler.js
9.22
KB
-rw-r--r--
2026-06-10 18:30
toggler.min.js
4.11
KB
-rw-r--r--
2026-06-10 18:30
Save
Rename
/* * Copyright © 2023 Regular Labs - All Rights Reserved * GNU General Public License version 2 or later */ "use strict";if(typeof window.RegularLabsColorPicker==='undefined'){(function($){window.RegularLabsColorPicker=function(element,options){this.select=$(element);this.options=$.extend({},$.fn.nncolorpicker.defaults,options);this.select.hide();let list='';$('option',this.select).each(function(){const option=$(this);let color=option.val();if(option.text()=='-'){list+='<br>';return;} let clss='nncolorpicker-swatch';if(color=='none'){clss+=' nocolor';color='transparent';} if(option.attr('selected')){clss+=' active';} list+='<span class="'+clss+'"><span style="background-color: '+color+';" tabindex="0"></span></span>';});let color=this.select.val();let clss='nncolorpicker-swatch';if(color=='none'){clss+=' nocolor';color='transparent';} this.icon=$('<span class="'+clss+'"><span style="background-color: '+color+';" tabindex="0"></span></span>').insertAfter(this.select);this.icon.on('click',$.proxy(this.show,this));this.panel=$('<span class="nncolorpicker-panel"></span>').appendTo(document.body);this.panel.html(list);this.panel.on('click',$.proxy(this.click,this));$(document).on('mousedown',$.proxy(this.hide,this));this.panel.on('mousedown',$.proxy(this.mousedown,this));};RegularLabsColorPicker.prototype={constructor:RegularLabsColorPicker,show:function(){const bootstrapArrowWidth=16;const pos=this.icon.offset();this.panel.css({left:pos.left+this.icon.width()/2-bootstrapArrowWidth,top:pos.top+this.icon.outerHeight()});this.panel.show(this.options.delay);},hide:function(){this.panel.hide(this.options.delay);},click:function(e){const target=$(e.target);if(target.length===1){if(target[0].nodeName.toLowerCase()==='span'){let color='';let bgcolor='';let clss='';if(target.parent().hasClass('nocolor')){color='none';bgcolor='transparent';clss='nocolor';}else{color=this.rgb2hex(target.css('background-color'));bgcolor=color;} target.parent().siblings().removeClass('active');target.parent().addClass('active');this.icon.removeClass('nocolor').addClass(clss);this.icon.find('span').css('background-color',bgcolor);this.hide();this.select.val(color).change();}}},mousedown:function(e){e.stopPropagation();e.preventDefault();},rgb2hex:function(rgb){function hex(x){return("0"+parseInt(x,10).toString(16)).slice(-2);} const matches=rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/);if(matches===null){return rgb;}else{return'#'+hex(matches[1])+hex(matches[2])+hex(matches[3]);}}};$.fn.nncolorpicker=function(option){return this.each(function(){const self=$(this);const options=typeof option==='object'&&option;let data=self.data('nncolorpicker');if(!data){self.data('nncolorpicker',(data=new RegularLabsColorPicker(this,options)));} if(typeof option==='string'){data[option]();}});};$.fn.nncolorpicker.Constructor=RegularLabsColorPicker;$.fn.nncolorpicker.defaults={delay:0};$(document).ready(function(){$('select.nncolorpicker').nncolorpicker();});})(jQuery);}