Linux webm008.cluster115.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.115.20.8 | : 216.73.216.59
Cant Read [ /etc/named.conf ]
8.1.34
quelfutuu
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
quelfutuu /
www /
prive /
javascript /
[ HOME SHELL ]
Name
Size
Permission
Action
SearchHighlight.js
9.03
KB
-rw----r--
Sortable.js
121.02
KB
-rw----r--
Sortable.min.js
43.1
KB
-rw----r--
ajaxCallback.js
37.63
KB
-rw----r--
gadgets.js
3.7
KB
-rw----r--
jquery.autosave.js
1.46
KB
-rw----r--
jquery.form.js
41.25
KB
-rw----r--
jquery.js
278.63
KB
-rw----r--
jquery.placeholder-label.js
1.53
KB
-rw----r--
js.cookie.js
4.09
KB
-rw----r--
layer.js
8.05
KB
-rw----r--
login.js
857
B
-rw----r--
prefixfree.js
13.02
KB
-rw----r--
prefixfree.min.js
6.55
KB
-rw----r--
presentation.js
4.19
KB
-rw----r--
spip_barre.js
564
B
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.placeholder-label.js
/** * Placeholder label * https://github.com/AbleTech/jquery.placeholder-label * * Copyright (c) 2010 Able Technology Consulting Limited * http://www.abletech.co.nz/ */ (function($) { $.placeholderLabel = { placeholder_class: null, add_placeholder: function(){ if($(this).val() == $(this).attr('placeholder')){ $(this).val('').removeClass($.placeholderLabel.placeholder_class); } }, remove_placeholder: function(){ if($(this).val() == ''){ $(this).val($(this).attr('placeholder')).addClass($.placeholderLabel.placeholder_class); } }, disable_placeholder_fields: function(){ $(this).find("input[placeholder]").each(function(){ if($(this).val() == $(this).attr('placeholder')){ $(this).val(''); } }); return true; } }; $.fn.placeholderLabel = function(options) { // detect modern browsers var dummy = document.createElement('input'); if(dummy.placeholder != undefined){ return this; } var config = { placeholder_class : 'placeholder' }; if(options) $.extend(config, options); $.placeholderLabel.placeholder_class = config.placeholder_class; this.each(function() { var input = $(this); input.focus($.placeholderLabel.add_placeholder); input.blur($.placeholderLabel.remove_placeholder); input.triggerHandler('focus'); input.triggerHandler('blur'); $(this.form).submit($.placeholderLabel.disable_placeholder_fields); }); return this; } })(jQuery);
Close