About 108,000 results
Open links in new tab
  1. Deserialization - OWASP Cheat Sheet Series

    Deserialization is the reverse of that process, taking data structured in some format, and rebuilding it into an object. Today, the most popular data format for serializing data is JSON. …

  2. What Are Serialization and Deserialization in Programming?

    Mar 18, 2024 · Deserialization is the reverse process of serialization. It involves taking a byte stream and converting it back into an object. This is done using the appropriate tools to parse …

  3. Serialization and Deserialization in Java - GeeksforGeeks

    Jun 2, 2025 · Serialization vs Deserialization in Java The main difference between serialization and deserialization is: Serialization is the process of converting object to byte stream. …

  4. What is deserialization and how does it work? | Hazelcast

    What Is Deserialization? Deserialization is the process of reconstructing a data structure or object from a series of bytes or a string in order to instantiate the object for consumption.

  5. Insecure deserialization | Web Security Academy - PortSwigger

    Deserialization is the process of restoring this byte stream to a fully functional replica of the original object, in the exact state as when it was serialized.

  6. Understanding Data Serialization and Deserialization: A …

    Deserialization is the reverse process of serialization. It involves taking serialized data (like a stream of bytes or a JSON string) and reconstructing it back into a complex data structure or …

  7. Deserialization - Glossary - MDN

    Jul 11, 2025 · Deserialization is the process whereby a lower-level format (e.g., that has been transferred over a network, or stored in a data store) is translated into a readable object or …

  8. Serialization - Wikipedia

    Serialization breaks the opacity of an abstract data type by potentially exposing private implementation details. Trivial implementations which serialize all data members may violate …

  9. What is Deserialization | Security Risks & Mitigation | Imperva

    Sep 30, 2025 · Deserialization is the process of converting a data structure or object state stored in a format like JSON, XML, or a binary format into a usable object in memory. This technique …

  10. Deserialization Explained and How to Protect Apps

    May 29, 2022 · Deserialization is the process of extracting data from files, networks or streams and rebuilding it as objects—as opposed to serialization which involves converting objects to a …