You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
0. 들어가며
readObject 메서드는 직렬화된 데이터를 읽어서 객체로 역직렬화하는 메서드 입니다.
readObject 메서드의 특징은 다음과 같습니다
Serializable
인터페이스를 상속해야 함readObject 메서드는 다음과 같이 구현됩니다.
1. 바이트스트림 조작 공격
readObject 메서드는
바이트 스트림을 받는 생성자
를 작성한다고 생각하고 만들어야 합니다.공격자가 조작된 바이트스트림으로 객체를 생성하면, 의도치 않은 형태의 객체가 생성될 수 있기 때문입니다.
다음과 같은 경우를 예로들 수 있습니다.
2. readObject 메서드 작성 지침
Beta Was this translation helpful? Give feedback.
All reactions