Multiple choice technology security

Give the reason(s) of Information leakage in the below code: 1 ... 2 3 4 Please enter your Login ID and Password to get into the Web Site. 5 6 Enter Login ID : 7 Enter Password : 8 9 10 11 12 ...

  1. auto-complete ON

  2. Improper usage of HTTP Method

  3. Developer Comments

  4. Option 2 AND Option 3

  5. Option 1 AND Option 3

  6. All

Reveal answer Fill a bubble to check yourself
F Correct answer
Explanation

The code exhibits multiple security issues: sensitive credentials are left in developer comments, the form uses the GET method (exposing passwords in the URL), and autocomplete is not disabled on password fields.