Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 679 Bytes

B312.md

File metadata and controls

17 lines (10 loc) · 679 Bytes

Pattern: Use of insecure telnetlib module

Issue: -

Description

Telnet-related functions are being called. Telnet is considered insecure protocol because of serious security concerns when using over an open network such as the Internet. Use SSH or some other encrypted protocol instead.

This rule checks for the following calls:

  • telnetlib.*

Further Reading