mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings
synced 2025-12-06 08:54:40 +01:00
import os
This commit is contained in:
parent
d40e055629
commit
df8493e4e6
1 changed files with 2 additions and 2 deletions
|
|
@ -32,7 +32,7 @@ Python 2.7 documentation clearly states Pickle should never be used with untrust
|
||||||
> The pickle module is not secure against erroneous or maliciously constructed data. Never unpickle data received from an untrusted or unauthenticated source.
|
> The pickle module is not secure against erroneous or maliciously constructed data. Never unpickle data received from an untrusted or unauthenticated source.
|
||||||
|
|
||||||
```python
|
```python
|
||||||
import cPickle
|
import cPickle, os
|
||||||
from base64 import b64encode, b64decode
|
from base64 import b64encode, b64decode
|
||||||
|
|
||||||
class Evil(object):
|
class Evil(object):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue