mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 07:04:22 +00:00
2.2 KiB
2.2 KiB
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
Summary
Deserialization Identifier
Check the following sub-sections, located in other chapters :
- Java deserialization : ysoserial, ...
- PHP (Object injection) : phpggc, ...
- Ruby : universal rce gadget, ...
- Python : pickle, ...
- YAML : PyYAML, ...
- .NET : ysoserial.net, ...
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 |
POP Gadgets
A POP (Property Oriented Programming) gadget is a piece of code implemented by an application's class, that can be called during the deserialization process.
POP gadgets characteristics:
- Can be serialized
- Has public/accessible properties
- Implements specific vulnerable methods
- Has access to other "callable" classes