Skip to content

Files

Latest commit

 

History

History
17 lines (10 loc) · 636 Bytes

B302.md

File metadata and controls

17 lines (10 loc) · 636 Bytes

Pattern: Use of possibly insecure marshal module

Issue: -

Description

marshal module appears to be in use, causing a possible security issue. It is not intended to be secure against erroneous or maliciously constructed data. Never unmarshal data received from an untrusted or unauthenticated source.

This rule checks for the following calls:

  • marshal.load
  • marshal.loads

Further Reading