A network security monitoring sensor positioned at a cloud perimeter captures the following HTTP payload in a triggered NIDS alert log:
http
POST /api/v1/auth/login HTTP/1.1
Host: portal.example.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 46
user=admin%27%20OR%20%271%27%3D%271&pass=secret
The NIDS rule signature incorrectly labeled the alert as a generic client-side scripting event. Which of the following correctly identifies the actual threat vector represented by this payload and its primary objective?
- ACross-Site Scripting (XSS) attempting to execute malicious client-side scripts inside the administrative user browser session.
- SQL Injection attempting to alter backend database query logic to bypass authentication controls.Cevap
- CA network-level buffer overflow attempting to corrupt web server process memory to execute arbitrary shellcode.
- DA deception honeypot interaction attempting to capture credentials for threat intelligence collection.
Cevap
SQL Injection attempting to alter backend database query logic to bypass authentication controls.
The correct option accurately identifies the payload `admin' OR '1'='1` as a SQL injection attack. URL decoding `%27` reveals single quotation marks used to break out of the SQL data field context and force the query statement to evaluate as true, thereby bypassing authentication logic at the database layer.
Adım Adım Çözüm
Anahtar Kavram
Identifying SQL Injection alert signatures in network traffic monitoring