We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
SerializationUtils.deserialize 함수는 RCE 취약점으로 인해 더 이상 사용이 권고되지 않습니다.
SerializationUtils.deserialize
// com/dnd/wedding/global/config/util/CookieUtil.java public static <T> T deserialize(Cookie cookie, Class<T> cls) { return cls.cast(SerializationUtils.deserialize( Base64.getUrlDecoder().decode(cookie.getValue()))); }
CookieUtil 내 해당 함수는 다른 방식으로 대체되어야 합니다.
CookieUtil
No response
The text was updated successfully, but these errors were encountered:
Chaerim1001
No branches or pull requests
Description
SerializationUtils.deserialize
함수는 RCE 취약점으로 인해 더 이상 사용이 권고되지 않습니다.Solution
CookieUtil
내 해당 함수는 다른 방식으로 대체되어야 합니다.Alternatives
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: