The goal is to detect when a user uses the built-in input function with an arg or kwarg of string containing "password". Unit tests demonstrate when this may be a false positive, such as input("Please enter your name. Please do not enter your password")
Closes #16
The goal is to detect when a user uses the built-in
input
function with an arg or kwarg of string containing "password". Unit tests demonstrate when this may be a false positive, such asinput("Please enter your name. Please do not enter your password")
First pass attempt, would love feedback.