PrepAway - Latest Free Exam Questions & Answers

Category: 312-92

Exam 312-92: EC-Council Certified Secure Programmer (ECSP)

What feature of the BlueFire software will be able to accomplish this?

Jacob just purchased the BlueFire Mobile Security Enterprise software package for all his
company’s mobile devices. Jacob wants to configure the software so that it will quarantine a
device by blocking all incoming and outgoing network communication if a breach or violation has
occurred. What feature of the BlueFire software will be able to accomplish this?

What ports should Clay tell the network team to close off at the firewall to disallow all incoming and outgoin

Clay is a SQL dba working for Integrated Solutions Inc., a graphics design company in Miami. Clay
administers 10 SQL servers at the company’s headquarters. Clay wants to ensure that all SQL
traffic stays within the internal network and no SQL traffic from the outside can get into the internal
network. What ports should Clay tell the network team to close off at the firewall to disallow all
incoming and outgoing SQL traffic?

What vulnerability or issue is the code susceptible to?

Lori is creating a login page using Java on one of her websites with the following code. What
vulnerability or issue is the code susceptible to?
conn = pool.getConnection();
String sql = “select * from user where
username=’” + “’ and password=’” + password +
“’”;
stmt = conn.createstatement();
rs = stmt.executeQuery(sql);
if (rs.next())
{
loggedIn = true;
out.println(“Successfully logged in”);
}
else
{
out.println(“Username and/or password not valid”);
}

What is Malory trying to prevent here?

Malory is creating a webpage in PHP where users will have to logon to gain access to certain
areas of the site. Malory is concerned that malicious users might try to exploit her site, so she
decides to use the following code to prevent some attacks. What is Malory trying to prevent here?
$username = addslashes($_POST[“username”]);
$password = addslashes($_POST[“password”]);


Page 5 of 10« First...34567...10...Last »