Windows NT WIN-Q8QVV26RG2E 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 3.145.54.55
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: server_privileges.js 7886 2005-11-23 19:10:30Z nijel $ */ /** * Validates the password field in a form * * @param object the form * * @return boolean whether the field value is valid or not */ function checkPassword(the_form) { // Did the user select 'no password'? if (typeof(the_form.elements['nopass']) != 'undefined' && the_form.elements['nopass'][0].checked) { return true; } else if (typeof(the_form.elements['pred_password']) != 'undefined' && (the_form.elements['pred_password'].value == 'none' || the_form.elements['pred_password'].value == 'keep')) { return true; } // Validates if (the_form.elements['pma_pw'].value == '') { alert(jsPasswordEmpty); the_form.elements['pma_pw2'].value = ''; the_form.elements['pma_pw'].focus(); return false; } else if (the_form.elements['pma_pw'].value != the_form.elements['pma_pw2'].value) { alert(jsPasswordNotSame); the_form.elements['pma_pw'].value = ''; the_form.elements['pma_pw2'].value = ''; the_form.elements['pma_pw'].focus(); return false; } // end if...else if return true; } // end of the 'checkPassword()' function /** * Validates the "add a user" form * * @return boolean whether the form is validated or not */ function checkAddUser(the_form) { if (the_form.elements['pred_hostname'].value == 'userdefined' && the_form.elements['hostname'].value == '') { alert(jsHostEmpty); the_form.elements['hostname'].focus(); return false; } if (the_form.elements['pred_username'].value == 'userdefined' && the_form.elements['username'].value == '') { alert(jsUserEmpty); the_form.elements['username'].focus(); return false; } return checkPassword(the_form); } // end of the 'checkAddUser()' function /** * Generate a new password, which may then be copied to the form * with suggestPasswordCopy(). * * @param string the form name * * @return boolean always true */ function suggestPassword() { var pwchars = "abcdefhjmnpqrstuvwxyz23456789ABCDEFGHJKLMNPQRSTUVWYXZ.,:"; var passwordlength = 16; // do we want that to be dynamic? no, keep it simple :) var passwd = document.getElementById('generated_pw'); passwd.value = ''; for ( i = 0; i < passwordlength; i++ ) { passwd.value += pwchars.charAt( Math.floor( Math.random() * pwchars.length ) ) } return passwd.value; } /** * Copy the generated password (or anything in the field) to the form * * @param string the form name * * @return boolean always true */ function suggestPasswordCopy() { document.getElementById('text_pma_pw').value = document.getElementById('generated_pw').value; document.getElementById('text_pma_pw2').value = document.getElementById('generated_pw').value; return true; }