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

Skip to content

Commit 91cd6bd

Browse files
committed
password best practices hacker book
1 parent 9028d2d commit 91cd6bd

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

docs/hackers/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: "/hackers/passwords.html"
4+
id: "hackers/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/hackers/hackers-nav.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
path: /hackers/edit-the-doc-site.html
77
- title: Hacker Start-Up Guide
88
path: /hackers/hacker-start-up-guide.html
9+
- title: Password Best Practices
10+
path: /hackers/passwords.html
911
- title: Private vs Public Programs
1012
path: /hackers/private-vs-public-programs.html
1113
- title: Your Profile

0 commit comments

Comments
 (0)