jet-admin / jet-bridge

Audit required: Use of pickle module BAN-B301
Security
Major
5 months ago5 months old
Pickle and modules that wrap it can be unsafe when used to deserialize untrusted data, possible security issue.
623
624    try:
625        with open(file_path, 'rb') as file:
626            metadata = pickle.load(file=file)627
628        metadata.bind = connection
629