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
if (typeof RSFormPro != 'object') { var RSFormPro = {}; } RSFormPro.Validations = { Numeric: function () { jQuery('#rsfp-tabs').on("keyup", '[data-properties="numeric"]', function () { if (!jQuery.isNumeric(jQuery(this).val()) && jQuery(this).val() != '') { jQuery(this).val(jQuery(this).val().replace(/[^0-9]/g, '')); } }); }, Alphanumeric: function() { jQuery('#rsfp-tabs').on("keyup", '[data-properties="alphanumeric"]', function () { jQuery(this).val(jQuery(this).val().replace(/[^A-Za-z0-9]/g, '')); }); }, TextareaSize: function() { jQuery('#rsfp-tabs').on("keyup", '[data-properties="textareasize"]', function () { jQuery(this).val(jQuery(this).val().replace(/[^0-9px%]/g, '')); }); }, Float: function () { jQuery('#rsfp-tabs').on("keyup", '[data-properties="float"]', function () { if (!jQuery.isNumeric(jQuery(this).val()) && jQuery(this).val() != '') { jQuery(this).val(jQuery(this).val().replace(/\.{1,}/g, '.').replace(/[^0-9\.]/g, '')); } }); }, Tags: function ($field) { jQuery.each($field, function () { var $selector = jQuery('#' + this.selector); if ($selector.attr('data-properties') == 'oneperline') { $selector.tagEditor({ delimiter: '\n ,' }) } }); }, Tooltips: function($field) { if (typeof jQuery.fn.popover === 'function') { jQuery('.fieldHasTooltip').popover({"html": true, "container": "body", "trigger": 'hover', 'title': getTitle, 'content': getContent}); } function getTitle() { return this.getAttribute('data-title'); } function getContent() { return this.getAttribute('data-content'); } }, Toggle: function ($field) { jQuery.each($field, function () { var $selector = jQuery('#' + this.selector); if ($selector.attr('data-properties') === 'toggler') { /** * Get the JSON sent through the data attributes */ var $data = this.data; var $el = $selector; var $initialVal = $el.val(); /** * If there are 2 - 3 scenarios for conditionals, the * JSON object that is sent through the DATA ATTRIBUTES * should be like this: * case -> type -> { show : fields , hide : fields} */ if (typeof $data.case !== 'undefined' && $data.case.hasOwnProperty($initialVal)) { jQuery.each($data.case[$initialVal].hide, function () { jQuery('#id' + this).hide(); }); } if (typeof $data.indexcase !== 'undefined') { jQuery.each($data.indexcase, function(index, value){ if ($initialVal.indexOf(index) === 0) { jQuery.each(value.hide, function () { jQuery('#id' + this).hide(); }); } }); } $el.change(function () { var $value = this.value; if (typeof $data.case !== 'undefined' && $data.case.hasOwnProperty($value)) { jQuery.each($data.case[$value].hide, function () { jQuery('#id' + this).hide(); }); jQuery.each($data.case[$value].show, function () { jQuery('#id' + this).show(); }); } if (typeof $data.indexcase !== 'undefined') { jQuery.each($data.indexcase, function(index, value){ if ($value.indexOf(index) === 0) { jQuery.each(value.show, function () { jQuery('#id' + this).show(); }); jQuery.each(value.hide, function () { jQuery('#id' + this).hide(); }); } }); } }); } }); } }; /** * Initiate Validations */ jQuery(document).ready(function () { RSFormPro.Validations.Numeric(); RSFormPro.Validations.Alphanumeric(); RSFormPro.Validations.Float(); RSFormPro.Validations.TextareaSize(); /** * Bind the functions to the event created * in administrator\components\com_rsform\assets\js\script.js */ jQuery('#rsfp-tabs').on('renderedLayout', function (objectEvent, $field) { RSFormPro.Validations.Tags($field); RSFormPro.Validations.Toggle($field); RSFormPro.Validations.Tooltips($field); }) });