From 1a5537a04494ac1767c8a75f372066a78fe72b39 Mon Sep 17 00:00:00 2001 From: Swissky <12152583+swisskyrepo@users.noreply.github.com> Date: Mon, 18 Apr 2022 20:58:14 +0200 Subject: [PATCH] Add warning about cPickle --- Insecure Deserialization/Python.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Insecure Deserialization/Python.md b/Insecure Deserialization/Python.md index 98e843e..563db1c 100644 --- a/Insecure Deserialization/Python.md +++ b/Insecure Deserialization/Python.md @@ -3,6 +3,7 @@ ## Pickle The following code is a simple example of using `cPickle` in order to generate an auth_token which is a serialized User object. +:warning: `import cPickle` will only work on Python 2 ```python import cPickle