Skip to content

Commit

Permalink
Notes/tech/security.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dvogt23 committed May 16, 2024
1 parent b8ebcff commit ad8516c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Notes/tech/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,15 @@
Interest things for security in general:

**Articles:**
- Minimum viable secure product [mvsp](https://mvsp.dev/)
- Minimum viable secure product [mvsp](https://mvsp.dev/)

### Yubikey

Best practice guide: https://github.com/drduh/YubiKey-Guide

Secure password:
```
LC_ALL=C tr -dc 'A-Z1-9' < /dev/urandom | \
tr -d "1IOS5U" | fold -w 30 | sed "-es/./ /"{1..26..5} | \
cut -c2- | tr " " "-" | head -1
```

0 comments on commit ad8516c

Please sign in to comment.