Q1) Consider the following fragment in an authentication program: username = read_username();
password = read_password();
if username is "l33t h4ck0r"
return ALLOW_LOGIN;
if username and password are valid
return ALLOW_LOGIN
else return DENY_LOGIN
What kind of malicious software is this?