About 125,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. 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.

  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. Serialization and Deserialization in Java - GeeksforGeeks

    Jun 2, 2025 · Deserialization is the reverse process where the byte stream is used to recreate the actual Java object in memory. This mechanism is used to persist the object.

  6. Deserialization - HackTricks

    Deserialization, conversely, is the process that counteracts serialization. It involves taking data that has been structured in a specific format and reconstructing it back into an object.

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

    Aug 12, 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 …

  8. 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 …

  9. Understanding Serialization and Deserialization ... - DEV …

    Sep 6, 2024 · What is Serialization and Deserialization? Serialization and deserialization are processes used to convert complex data structures into a format that can be easily stored or …

  10. 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 …