1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-06-10 10:26:32 +02:00
PayloadsAllTheThings/Insecure Deserialization
Swissky 6dd5c18b45 Normalize Titles 2022-10-12 12:13:55 +02:00
..
Files NodeJS Serialization 2022-09-23 11:21:29 +02:00
DotNET.md .NET Deserialization 2022-10-11 21:52:46 +02:00
Java.md YAML Deserialization 2022-09-16 16:37:40 +02:00
Node.md Normalize Titles 2022-10-12 12:13:55 +02:00
PHP.md Normalize Titles 2022-10-12 12:13:55 +02:00
Python.md Add warning about cPickle 2022-04-18 20:58:14 +02:00
README.md .NET Deserialization 2022-10-11 21:52:46 +02:00
Ruby.md YAML Deserialization 2022-09-16 16:37:40 +02:00
YAML.md Update YAML.md 2022-10-05 13:47:24 +02:00

Insecure Deserialization

Serialization is the process of turning some object into a data format that can be restored later. People often serialize objects in order to save them to storage, or to send as part of communications. Deserialization is the reverse of that process -- taking data structured from some format, and rebuilding it into an object - OWASP

Check the following sub-sections, located in other files :

Object Type Header (Hex) Header (Base64)
Java Serialized AC ED rO
.NET ViewState FF 01 /w
Python Pickle 80 04 95 gASV
PHP Serialized 4F 3A Tz

LABS

References