Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9028d2d

Browse files
committed
password best practices
1 parent 360dc3c commit 9028d2d

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

docs/programs/passwords.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: "Password Best Practices"
3+
path: "/programs/passwords.html"
4+
id: "programs/password-best-practices"
5+
---
6+
7+
Passwords are used to protect access to your account from unauthorized users. When coming up with passwords to various accounts, there are standards and best practices to follow so that your accounts are best protected.
8+
9+
#### Use a strong unique passphrase.
10+
* String together 4 random words.
11+
* Example: correctwhalebatterystaple
12+
* Use a minimum of 12 characters in your passphrase. The longer your password, the better.
13+
* Use a different password for each site you log into. This ensures that if another site is breached or your password is leaked somewhere, it can’t be used to log into another site.
14+
* Avoid:
15+
* Using single dictionary words, spatial patterns (i.e. qwerty, asdf), repeating letters, or sequences (i.e. abcd, 1234).
16+
* Making the first letter an uppercase.
17+
* Substituting letters with common numbers and symbols.
18+
* Using years, dates, zip codes.
19+
20+
#### Use a password manager.
21+
Password management tools are helpful in storing and organizing your passwords so that you don’t have to memorize all of your unique passwords. Many enable you to sync your passphrases across multiple devices and can help you log in automatically. These password managers encrypt your password library with a master password that becomes the only thing you just need to remember.
22+
23+
#### Enable two-factor or multi-factor authentication.
24+
Enabling two-factor or multi-factor authentication provides an additional layer of security to ensure that you’re the authorized user logging into your account. Not all applications provide [two-factor authentication](https://twofactorauth.org/), but when it’s available, it’s in your best interest to set it up. You can [enable two-factor authentication](https://docs.hackerone.com/hackers/two-factor-authentication.html) on HackerOne under your profile’s **Settings > Authentication**.

src/pages/programs/programs-nav.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
path: /programs/private-vs-public-programs.html
1818
- title: Parent/Child Programs
1919
path: /programs/parent-child-programs.html
20+
- title: Password Best Practices
21+
path: /programs/passwords.html
2022
- title: Using Markdown
2123
path: /programs/using-markdown.html
2224
- title: Your Program

0 commit comments

Comments
 (0)