일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 백준
- 회고
- node.js
- hackctf
- programmers
- Python
- Batch
- gcp cloud build
- gcp
- 사이버보안
- 스프링 배치
- 리버싱
- 웹해킹
- gcp ci/cd
- 파이썬
- kotest
- nodejs
- 네트워크
- spring Batch
- docker
- cloud run
- 웹보안
- 시스템 해킹
- 포너블
- sequelize
- pwnable.xyz
- 보안
- 프로그래머스
- Baekjoon
- webhacking.kr
Archives
목록Nest (1)
uju's Tech
[Nest.js] Passport local strategy
Passport local strategy passport 에서의 local strategy는 가장 기본적인 email 과 password 를 가지고 인증하는것이다. (로그인할 때 사용됨) nest 에서도 @nest/passport 와 passport-local 을 사용하여 local strategy를 구현할 수 있다. 들어가기전 일단..local strategy가 동작하는 흐름 보기. id , password 로 로그인 요청 AuthGuard 를 통해 사용자 인증 AuthGuard 가 호출되면 LocalStrategy 의 validate 호출 유저가 인증되면 AuthGuard 의 canActivate 가 true 리턴 Step1. 라이브러리 설치 $ npm install --save @nestjs/pa..
Nest
2021. 9. 9. 20:20