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.216.195
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 /
com_rsform /
js /
admin /
Delete
Unzip
Name
Size
Permission
Date
Action
backup.js
8.69
KB
-rwxr-xr-x
2023-07-13 17:52
backup.min.js
5.34
KB
-rwxr-xr-x
2023-07-13 17:52
conditions.js
4.62
KB
-rwxr-xr-x
2023-07-13 17:52
conditions.min.js
3.85
KB
-rwxr-xr-x
2023-07-13 17:52
css.escape.js
3.18
KB
-rwxr-xr-x
2023-07-13 17:52
css.escape.min.js
1.16
KB
-rwxr-xr-x
2023-07-13 17:52
directory.js
8.84
KB
-rwxr-xr-x
2023-07-13 17:52
directory.min.js
6.45
KB
-rwxr-xr-x
2023-07-13 17:52
export.js
3.67
KB
-rwxr-xr-x
2023-07-13 17:52
export.min.js
2.98
KB
-rwxr-xr-x
2023-07-13 17:52
forms.js
30.98
KB
-rwxr-xr-x
2023-07-13 17:52
forms.min.js
21.54
KB
-rwxr-xr-x
2023-07-13 17:52
import.js
2
KB
-rwxr-xr-x
2023-07-13 17:52
import.min.js
1.58
KB
-rwxr-xr-x
2023-07-13 17:52
index.html
50
B
-rwxr-xr-x
2023-07-13 17:52
jquery.caret.min.js
1.13
KB
-rwxr-xr-x
2023-07-13 17:52
jquery.tag-editor.js
19.52
KB
-rwxr-xr-x
2023-07-13 17:52
jquery.tag-editor.min.js
10.77
KB
-rwxr-xr-x
2023-07-13 17:52
jquery.ui.core.min.js
20.72
KB
-rwxr-xr-x
2023-07-13 17:52
jquery.ui.resizable.js
26.32
KB
-rwxr-xr-x
2023-07-13 17:52
jquery.ui.resizable.min.js
19.27
KB
-rwxr-xr-x
2023-07-13 17:52
jquery.ui.sortable.min.js
23.86
KB
-rwxr-xr-x
2023-07-13 17:52
mappings.js
5.53
KB
-rwxr-xr-x
2023-07-13 17:52
mappings.min.js
3.56
KB
-rwxr-xr-x
2023-07-13 17:52
placeholders.js
4.66
KB
-rwxr-xr-x
2023-07-13 17:52
placeholders.min.js
3.56
KB
-rwxr-xr-x
2023-07-13 17:52
restore.js
10.2
KB
-rwxr-xr-x
2023-07-13 17:52
restore.min.js
7.32
KB
-rwxr-xr-x
2023-07-13 17:52
script.js
26.57
KB
-rwxr-xr-x
2023-07-13 17:52
script.min.js
20.27
KB
-rwxr-xr-x
2023-07-13 17:52
script40.js
519
B
-rwxr-xr-x
2023-07-13 17:52
script40.min.js
382
B
-rwxr-xr-x
2023-07-13 17:52
submissions.js
1.26
KB
-rwxr-xr-x
2023-07-13 17:52
submissions.min.js
1009
B
-rwxr-xr-x
2023-07-13 17:52
tablednd.js
30.43
KB
-rwxr-xr-x
2023-07-13 17:52
tablednd.min.js
11.98
KB
-rwxr-xr-x
2023-07-13 17:52
validation.js
4.01
KB
-rwxr-xr-x
2023-07-13 17:52
validation.min.js
2.73
KB
-rwxr-xr-x
2023-07-13 17:52
Save
Rename
/*! https://mths.be/cssescape v1.5.1 by @mathias | MIT license */ ;(function(root, factory) { // https://github.com/umdjs/umd/blob/master/returnExports.js if (typeof exports == 'object') { // For Node.js. module.exports = factory(root); } else if (typeof define == 'function' && define.amd) { // For AMD. Register as an anonymous module. define([], factory.bind(root, root)); } else { // For browser globals (not exposing the function separately). factory(root); } }(typeof global != 'undefined' ? global : this, function(root) { if (root.CSS && root.CSS.escape) { return root.CSS.escape; } // https://drafts.csswg.org/cssom/#serialize-an-identifier var cssEscape = function(value) { if (arguments.length == 0) { throw new TypeError('`CSS.escape` requires an argument.'); } var string = String(value); var length = string.length; var index = -1; var codeUnit; var result = ''; var firstCodeUnit = string.charCodeAt(0); while (++index < length) { codeUnit = string.charCodeAt(index); // Note: there’s no need to special-case astral symbols, surrogate // pairs, or lone surrogates. // If the character is NULL (U+0000), then the REPLACEMENT CHARACTER // (U+FFFD). if (codeUnit == 0x0000) { result += '\uFFFD'; continue; } if ( // If the character is in the range [\1-\1F] (U+0001 to U+001F) or is // U+007F, […] (codeUnit >= 0x0001 && codeUnit <= 0x001F) || codeUnit == 0x007F || // If the character is the first character and is in the range [0-9] // (U+0030 to U+0039), […] (index == 0 && codeUnit >= 0x0030 && codeUnit <= 0x0039) || // If the character is the second character and is in the range [0-9] // (U+0030 to U+0039) and the first character is a `-` (U+002D), […] ( index == 1 && codeUnit >= 0x0030 && codeUnit <= 0x0039 && firstCodeUnit == 0x002D ) ) { // https://drafts.csswg.org/cssom/#escape-a-character-as-code-point result += '\\' + codeUnit.toString(16) + ' '; continue; } if ( // If the character is the first character and is a `-` (U+002D), and // there is no second character, […] index == 0 && length == 1 && codeUnit == 0x002D ) { result += '\\' + string.charAt(index); continue; } // If the character is not handled by one of the above rules and is // greater than or equal to U+0080, is `-` (U+002D) or `_` (U+005F), or // is in one of the ranges [0-9] (U+0030 to U+0039), [A-Z] (U+0041 to // U+005A), or [a-z] (U+0061 to U+007A), […] if ( codeUnit >= 0x0080 || codeUnit == 0x002D || codeUnit == 0x005F || codeUnit >= 0x0030 && codeUnit <= 0x0039 || codeUnit >= 0x0041 && codeUnit <= 0x005A || codeUnit >= 0x0061 && codeUnit <= 0x007A ) { // the character itself result += string.charAt(index); continue; } // Otherwise, the escaped character. // https://drafts.csswg.org/cssom/#escape-a-character result += '\\' + string.charAt(index); } return result; }; if (!root.CSS) { root.CSS = {}; } root.CSS.escape = cssEscape; return cssEscape; }));