• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Resolved Is it safe to change password length long on SSH/Root?

Hajime Tanaka

Regular Pleskian
Is it safe to change a password for generator characters longer than 100x or 50x length on root + SSH?

Can we put change length type there,
Code:
Password Length: 50 - 100x
Include Symbols: ( e.g. @#$% )
Include Numbers: ( e.g. 123456 )
Include Lowercase Characters: ( e.g. abcdefgh )
Include Uppercase Characters: ( e.g. ABCDEFGH )
Exclude Similar Characters: ( e.g. i, l, 1, L, o, 0, O )
Exclude Ambiguous Characters: ( { } [ ] ( ) / \ ' " ` ~ , ; : . < > )
Generate On Your Device: ( do NOT send across the Internet )
Visit this site: Strong Random Password Generator
 
Is it safe to change a password for generator characters longer than 100x or 50x length on root + SSH?

Can we put change length type there,
Code:
Password Length: 50 - 100x
Include Symbols: ( e.g. @#$% )
Include Numbers: ( e.g. 123456 )
Include Lowercase Characters: ( e.g. abcdefgh )
Include Uppercase Characters: ( e.g. ABCDEFGH )
Exclude Similar Characters: ( e.g. i, l, 1, L, o, 0, O )
Exclude Ambiguous Characters: ( { } [ ] ( ) / \ ' " ` ~ , ; : . < > )
Generate On Your Device: ( do NOT send across the Internet )
Visit this site: Strong Random Password Generator

You can generate a password directly via ssh with the command :
Code:
dd if=/dev/urandom bs=1 count=32 2>/dev/null | base64 -w 0 | rev | cut -b 2- | rev
But it will be more secure to disable password authentication via ssh, and to use ssh-keys, and to use another port than 22 to avoid bruteforce
 
You can generate a password directly via ssh with the command :
Code:
dd if=/dev/urandom bs=1 count=32 2>/dev/null | base64 -w 0 | rev | cut -b 2- | rev
But it will be more secure to disable password authentication via ssh, and to use ssh-keys, and to use another port than 22 to avoid bruteforce
Thanks for the tell me and knowledge security :)
 
You can generate a password directly via ssh with the command :
Code:
dd if=/dev/urandom bs=1 count=32 2>/dev/null | base64 -w 0 | rev | cut -b 2- | rev
But it will be more secure to disable password authentication via ssh, and to use ssh-keys, and to use another port than 22 to avoid bruteforce
I have ask question.

Can I change password root to like here,
Code:
jMu^9&vkKZKXncWb___hg9GdqC7n_esX9zej$wAXEvb*sdn6vj

We just don't use that. It's generator password. If this will work to root login from Plesk and SSH?
 
I have ask question.

Can I change password root to like here,
Code:
jMu^9&vkKZKXncWb___hg9GdqC7n_esX9zej$wAXEvb*sdn6vj

We just don't use that. It's generator password. If this will work to root login from Plesk and SSH?

Hello,
yes, you can set this password for root, and you will be able to login with this password.
But it's better to disable Plesk login with root . You can disable it with the panel.ini editor extension :

Logging in to Plesk for the first time
 
Back
Top