Difference between revisions of "Password"
m (style) |
AGentooCat (talk | contribs) m (fix wording) |
||
Line 1: | Line 1: | ||
− | A '''password''' is a secret string |
+ | A '''password''' is a secret string that a user (a person or a program) can use as a form of authentication. One is mostly used together with a [[username]] to identify who wants access, but authentication can also be done with only passwords (like with tokens). |
− | |||
− | A password is related to a [[username]], which identifies who wants to have access. Username is public and password is private. |
||
== Password security == |
== Password security == |
||
− | A malicious [[hacker]] can gain an access if ( |
+ | A malicious [[hacker]] can gain an access if they know the password (and most likely the username) of the victim. Therefore, passwords have to be strong. Unfortunately, many ignorant people use weak passwords (such as <q>12345</q>, <q>123456</q>, <q>123456789</q>, <q>test1</q>, <q>password</q>, <q>asdf</q>, <q>qwerty</q>, <q>iloveyou</q>, <q>abc123</q> and so on)<ref>[https://www.forbes.com/sites/daveywinder/2019/12/14/ranked-the-worlds-100-worst-passwords/?sh=55e44a3469b4 Forbes "Ranked: The World’s Top 100 Worst Passwords"]</ref>.<br />Sites attempt to mitigate this by setting a bunch of rules (this much long, must have numbers/symbols, etc.) but a person can still make a password of <q>JohnsGmailAccount2023!.</q>.<br />One of the ways to generate [[Cryptography|cryptographically]] strong passwords is the [[secure password generator]]. |
== References == |
== References == |
Revision as of 00:09, 27 January 2023
A password is a secret string that a user (a person or a program) can use as a form of authentication. One is mostly used together with a username to identify who wants access, but authentication can also be done with only passwords (like with tokens).
Password security
A malicious hacker can gain an access if they know the password (and most likely the username) of the victim. Therefore, passwords have to be strong. Unfortunately, many ignorant people use weak passwords (such as 12345
, 123456
, 123456789
, test1
, password
, asdf
, qwerty
, iloveyou
, abc123
and so on)[1].
Sites attempt to mitigate this by setting a bunch of rules (this much long, must have numbers/symbols, etc.) but a person can still make a password of JohnsGmailAccount2023!.
.
One of the ways to generate cryptographically strong passwords is the secure password generator.
References
Links
- WP: Password