Free Cisco 350-701 Exam Actual Questions

The questions for 350-701 were last updated On Apr 25, 2024

Question No. 1

In which form of attack is alternate encoding, such as hexadecimal representation, most often observed?

Show Answer Hide Answer
Correct Answer: C

Cross site scripting (also known as XSS) occurs when a web application gathers malicious data from a user. The data is usually gathered in the form of a hyperlink which contains malicious content within it. The user will most likely click on this link from another website, instant message, or simply just reading a web board or email message.

Usually the attacker will encode the malicious portion of the link to the site in HEX (or other encoding methods) so the request is less suspicious looking to the user when clicked on.

For example the code below is written in hex:

href=javascript:alert&#

x28'XSS')>Click Here

is equivalent to:

Click Here

Note: In the format ''&#xhhhh'', hhhh is the code point in hexadecimal form.


Question No. 2

Which flaw does an attacker leverage when exploiting SQL injection vulnerabilities?

Show Answer Hide Answer
Correct Answer: A

SQL injection usually occurs when you ask a user for input, like their username/userid, but the user gives

(''injects'') you an SQL statement that you will unknowingly run on your database. For example:

Look at the following example, which creates a SELECT statement by adding a variable (txtUserId) to a select

string. The variable is fetched from user input (getRequestString):

txtUserId = getRequestString(''UserId'');

txtSQL = ''SELECT * FROM Users WHERE UserId = '' + txtUserId;

If user enter something like this: ''100 OR 1=1'' then the SzQL statement will look like this:

SELECT * FROM Users WHERE UserId = 100 OR 1=1;

The SQL above is valid and will return ALL rows from the ''Users'' table, since OR 1=1 is always TRUE. A

hacker might get access to all the user names and passwords in this database.


Question No. 3

Which two prevention techniques are used to mitigate SQL injection attacks? (Choose two)

Show Answer Hide Answer
Correct Answer: A, B

Question No. 4

Which two endpoint measures are used to minimize the chances of falling victim to phishing and social engineering attacks? (Choose two)

Show Answer Hide Answer
Correct Answer: D, E

Phishing attacks are the practice of sending fraudulent communications that appear to come from a reputable source. It is usually done through email. The goal is to steal sensitive data like credit card and login information, or to install malware on the victim's machine.


Question No. 5

Which two mechanisms are used to control phishing attacks? (Choose two)

Show Answer Hide Answer
Correct Answer: A, E