PrepAway - Latest Free Exam Questions & Answers

What will the SQL statement accomplish?

Jeremy is web security consultant for Information Securitas. Jeremy has just been hired to perform contract work for a large state agency in Michigan. Jeremy’s first task is to scan all the company’s external websites. Jeremy comes upon a login page which appears to allow employees access to sensitive areas on the website. James types in the following statement in the username field:

SELECT * from Users where username=’admin’ ?AND password=” AND email like ‘%@testers.com%’

What will the SQL statement accomplish?

PrepAway - Latest Free Exam Questions & Answers

A.
If the page is susceptible to SQL injection, it will look in the Users table for usernames of admin

B.
This statement will look for users with the name of admin, blank passwords, and email addresses that end in @testers.com

C.
This Select SQL statement will log James in if there are any users with NULL passwords

D.
James will be able to see if there are any default user accounts in the SQL database

Explanation:

SELECT * from Users where username=’admin’ ?AND password=” AND email like ‘%@testers.com%’
This Command will display Table Includes Two Columns – users & their passwords-
username=admin–> just display admins
Example:

10 Comments on “What will the SQL statement accomplish?

  1. Eddie Guerrero says:

    I’ll tell you 1 thing, that explanation screenshot is WRONG! If the logic in the question is the password is empty, there is a password in the screenshot, and if the logic is to pull up the name ‘admin’, then why is the other account showing? That query in the screenshot only lists all records from mysql.users table.
    I think A and B are correct but B is more descriptive.

  2. Samuel Schneider says:

    A is the correct answer given the statement that “James types in the following statement in the username field:” However, I will concede that the sql query is correct and at best the question is tricky. Given the contex (Security) and the above statement. A is the correct answer. If it stated that James types in the following statement in the SQL query tool: then b would be correct.


Leave a Reply