ColinRobbins / scm-helper

Audit required: Use of pickle module BAN-B301
Security
Major
1 occurrence in this check
Pickle and modules that wrap it can be unsafe when used to deserialize untrusted data, possible security issue.
266        if scm:
267            data = scm.crypto.decrypt_file(cookiefile)
268            if data:
269                cookies = pickle.loads(data)270        else:
271            try:
272                with open(cookiefile, FILE_READ, encoding="utf8") as file: