Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 578 Bytes

B321.md

File metadata and controls

16 lines (9 loc) · 578 Bytes

Pattern: Use of possibly insecure ftplib module

Issue: -

Description

FTP-related functions are being called. FTP was not designed to be a secure protocol, and has many security weaknesses. Use SSH, SFTP, SCP or some other encrypted protocol instead.

This rule checks for the following calls:

  • ftplib.*

Further Reading