-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/24 비밀번호찾기 변경 #133
Merged
The head ref may contain hidden characters: "feat/24-\uBE44\uBC00\uBC88\uD638\uCC3E\uAE30-\uBCC0\uACBD"
Merged
Feat/24 비밀번호찾기 변경 #133
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
payload 값으로 임의의 데이터를 작성하여 쓰레기 값을 추가하였습니다. 브루트포스 공격 방지용으로 사용됩니다. 토큰은 1시간짜리로 발급됩니다. 기능작성 부분에 최대한 기능만을 작성하기 위해 클린 코딩을 하였습니다.
ejsRenderFile 함수와 sendMail 함수를 별도로 작성하여 기능 작성 부분에서 최대한 깔끔하게 작성 할수 있도록 했습니다. ejsRenderFile 에서는 purpose를 통해 어떠한 목적으로 사용할 것인지를 명시 하면 그에 맞는 데이터들을 ejs 파일에 작성합니다.
tls 연결을 사용합니다. 풀링 연결을 지원합니다. smtp 서버는 gmail로 사용합니다. 구글 계정을 별도로 추가 생성하였습니다.하루 100건의 메일만 허용합니다.
클라이언트가 인증 메일을 확인 후 인증하기를 누를 경우 자체처리 할 수 있도록 작성했습니다. 토큰에 담긴 id 값을 확인 하여 pending 값을 업데이트합니다. 이미 인증이 된 유저일 경우 pendingValidValueCheck 함수에서 처리합니다. 그 이후 작동합니다.
tokenParser에 이미 작성 되어 있는 verify 기능을 별도로 추가 작성 했습니다. ejs 파일 형식에는 Authorization 헤더 양식을 따르지 않은 토큰이 작성되어 있습니다. 이를 별도의 작업 없이 진행 하기 위해 작성했습니다.
body에 email 값을 받아 온 이후 받아온 email 과 인증 메일 보내기 API 와 동일하게 임의의 데이터를 작성하여 쓰레기 값을 payload에 추가 햇습니다. 토큰은 10분짜리로 발급 됩니다.
기본 로직에서 조금 변경 되었습니다. 패스워드 찾기 메일을 보낸 이후 클라이언트가 메일에서 인증을 하면 백엔드에서 자체적으로 초기화 한 이후 메일을 보내는 양식으로 변경 하였습니다. 로직은 다음과 같습니다. 1. salt 값은 16byte 랜덤 스트링을 crypto 로 hex 값으로 저장합니다. 2. [a-z][0-9] 의 값을 Math 함수를 통해 랜덤값을 받아 옵니다. 3. salt값과 [a-z][0-9]로 랜덤값을 을통 pwd_hash 값을 작성합니다. 4. 그 이후 db에 저장 및 비밀번호가 초기화가 되었음을 알리는 메일을 작성합니다.
4 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR 타입
반영 브랜치
Feat/24-비밀번호찾기-변경 -> dev-back
변경 사항
클라이언트가 메일로 패스워드 초기화를 요청 할 경우 백엔드 서버 측에서 패스워드를 초기화 한 이후 초기화된 패스워드를 메일로 보내게 됩니다.