|
|
|
|
|
by Polycryptus
2856 days ago
|
|
The use of Pickle isn't uncommon for session cookies in Python apps, from what I've seen. Pickle isn't really a problem unless you end up unserializing untrusted data... which a sign+encrypt scheme is supposed to ensure doesn't happen. You just can't leak the secret key or you're in trouble. Though, there's no excuse for leaving Django debug on in production. |
|