312-49v10 Exam QuestionsBrowse all questions from this exam

312-49v10 Exam - Question 182


While looking through the IIS log file of a web server, you find the following entries:

What is evident from this log file?

Show Answer
Correct Answer: D

The log file contains an entry with a SQL statement within the URL, specifically in the query string parameter 'username' of the '/login.asp' page. This indicates an attempt to execute SQL commands on the server, which is a classic sign of an SQL injection. SQL injection is a technique used by attackers to manipulate database queries and potentially gain unauthorized access to data. This clear presence of SQL code in the URL parameter signifies that there is a possibility of SQL injection.

Discussion

2 comments
Sign in to comment
aqeel1506
Jul 19, 2024

While looking through the IIS log file of a web server, you find the following entries: What is evident from this log file? A. Web bugs B. Cross site scripting C. Hidden fields D. SQL injection is possible

aqeel1506Option: D
Jul 19, 2024

Based on the entries in the IIS log file, the correct answer is D. SQL injection is possible. The log shows a URL with a query string that includes SQL code, which is a common indicator of an SQL injection attempt. This type of attack involves inserting or “injecting” SQL queries into input fields to manipulate the database.