{% extends "base.html" %} {% block title %} Insecure Deserialization Lab {% endblock %} {% block content %}

Insecure Deserialization

What is Insecure Deserialization

Exploitation of deserialization is somewhat difficult, as off the shelf exploits rarely work without changes or tweaks to the underlying exploit code. This issue is included in the Top 10 based on an industry survey and not on quantifiable data. Some tools can discover deserialization flaws, but human assistance is frequently needed to validate the problem. It is expected that prevalence data for deserialization flaws will increase as tooling is developed to help identify and address it. The impact of deserialization flaws cannot be overstated. These flaws can lead to remote code execution attacks, one of the most serious attacks possible. The business impact depends on the protection needs of the application and data.

This Lab consists of a Page that has some content only available to for the admin to see. How can we access that page as admin? How is our role defined?

If we check the cookie we see that it is base64 encoded, on decoding we realise it is pickle serialised and we can see some attributes, can you change the attributes to make the page readable?

Hint: try to flip the bit of the admin from ...admin\x94K\x00... to ...admin\x94K\x01...

Types of Attacks

Applications and APIs will be vulnerable if they deserialize hostile or tampered objects supplied by an attacker. This can result in two primary types of attacks:

Common Uses of Serialization

Create User

View Admin Content

How to Prevent

The only safe architectural pattern is not to accept serialized objects from untrusted sources or to use serialization mediums that only permit primitive data types. If that is not possible, consider:

  • Implementing integrity checks such as digital signatures on any serialized objects
  • Enforcing strict type constraints during deserialization before object creation
  • Isolating and running code that deserializes in low privilege environments
  • Logging deserialization exceptions and failures
  • Restricting or monitoring incoming and outgoing network connectivity from containers or servers that deserialize
  • Monitoring deserialization, alerting if a user deserializes constantly
{% endblock %}