Multiple choice technology security

If the characters %00%0A (CR+LF) are detected at the end of an input string this is most likely which of the following attacks?

  1. Cross Site Scripting

  2. Phishing

  3. SQL Injection

  4. HTTP Response Splitting

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

CRLF (%00%0A = Carriage Return + Line Feed) injection allows attackers to split HTTP responses by injecting malicious headers or content. This technique (HTTP Response Splitting) can lead to cache poisoning, XSS, or credential theft. XSS attacks inject scripts (not CRLF), phishing is social engineering, and SQL injection targets databases (not HTTP responses).