Web server will log which part of a GET request?
-
Hidden tags
-
Query Strings
-
Header
-
Cookies
B
Correct answer
Explanation
In a GET request, the query string (the key=value pairs after the ? in the URL) is logged by the web server in access logs. Hidden tags are in the HTML body and not sent separately. Headers are logged but are server metadata, not request content. Cookies are sent in headers.