A security analyst reviews a network security monitoring alert generated by a Network Intrusion Detection System (NIDS). The alert log highlights the following HTTP GET parameter string:
`GET /login.php?username=admin'%20OR%20'1'='1'-- HTTP/1.1`
Which of the following best identifies the type of malicious activity captured in this alert?
- SQL injection attempt designed to bypass database authentication logicCevap
- BCross-Site Scripting (XSS) attack injecting malicious JavaScript into the client browser
- CHoneypot failure where a deception system failed to block inline network traffic
- DPreventive control enforcement stopping unauthorized host network access
Cevap
SQL injection attempt designed to bypass database authentication logic
The URL-decoded string `admin' OR '1'='1'--` is a classic SQL injection payload. Attackers inject single quotes, boolean tautologies (like `'1'='1'`), and SQL comment flags (`--`) to force the backend database query to return true, bypassing authentication controls.
Adım Adım Çözüm
Anahtar Kavram
Identifying SQL Injection Indicators in Network Security Alerts