During code review, a penetration tester identifies the following line in a PHP web application: $sql = "SELECT * FROM users WHERE username='" . $_GET['user'] . "'"; Which type of vulnerability is most likely present?
Correct. Input is directly concatenated into an SQL query.
Why this answer
Direct concatenation of user input into an SQL query without sanitization results in SQL injection vulnerability.