Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 455 Bytes

File metadata and controls

9 lines (7 loc) · 455 Bytes

The Java Serializable API is very powerful, and very dangerous. Any consumption of a serialized object that cannot be explicitly trusted will likely result in a critical remote code execution bug that will give an attacker control of the application. (See Effective Java 3rd Edition §85)

Consider using less powerful serialization methods, such as JSON or XML.