312-92 Exam Questions
103 real 312-92 exam questions with expert-verified answers and explanations. Page 2 of 3.
- Question #51
Which Linux command will securely delete a file by overwriting its contents?
- Question #52
Shayla is designing a web-based application that will pass data to and from a company extranet. This data is very sensitive and must be protected at all costs. Shayla will use a di...
- Question #53
EC-Council 312-92 Exam After learning from an external auditor that his code was susceptible to attack, George decided to rewrite some of his code to look like the following. What...
- Question #54
Fred is planning on using the windows socket application ClientApp.exe program to create a client-side application that his employees will use. This program will access backend pro...
- Question #55
What would be the result of the following code? #include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { char *input=malloc(20); char *output=malloc(20); strcpy(ou...
- Question #56
Wayne is a gaming software developer for a large video gaming company in Los Angeles. Wayne has just completed developing a new action/adventure game for the company that is to be...
- Question #57
Kenny is the CIO for Fredrickson Entertainment, a gaming software company in Omaha. The developers in Kenny's company have just finished creating a 3D first person shooter game tha...
- Question #58
John is creating a website using ASP. John's web pages will have a number of calculations, so he decides to create an include file that the pages will call so he does not have to r...
- Question #59
Devon is an applications developer that just got back from a conference on how to correctly write code. Devon has a number of programs he has written that access data across WAN li...
- Question #60
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 si...
- Question #61
Tyler is in the applicaion testing phase of a particular project. He has decided to use the White Box testing method. Tyler has made a number of changes to his code after some init...
- Question #62
In which of the following attacks does an attacker successfully insert an intermediary software or program between two communicating hosts?
- Question #63
Megan has just build a new kernel using the command make bzImage. Where can Megan go now to see the newly created kernel?
- Question #64
Why would a software development firm want to fix any issues with a program at the design stage as opposed to fixing issues with a program through a patch release?
- Question #65
Fred wants to create his web page using AJAX to make them dynamic and give them the ability to use and share data. After an internal auditor examines the compliance of Fred's page,...
- Question #66
Lyle is writing some code in VB.NET and is implementing some build-in security. What type of .NET security is Lyle using in the following code? public class Myclass1 Public Sub New...
- Question #68
Versions Unlimited, a software design company in Seattle, has just finished development of a new mapping software product. They have completed testing the internal code and are now...
- Question #69
When the following code is compiled and run is a program what size block will be used to hold name string? #include <stdio.h> int main(int argc, char **argv) { char target[5]="TTTT...
- Question #70
Nathan, an application developer, has taken over the lead developer's position and now will administer five other developers. The last lead developer was a programmer specialized i...
- Question #71
What testing methodology does not require any knowledge of the internal design or code of a software application?
- Question #72
Travis is working on some code in C# that will create a digital signature. What will the following snippet from his program accomplish? childkat.xml signnode = xmlDoc.NewChild("sig...
- Question #73
What is the security and cryptographic framework used in Mac OS X called?
- Question #74
Kevin wants to use an SSL certificate from his Mac OS X server so that he can send and receive encrypted email. What would Kevin accomplish by typing in the following command? cert...
- Question #75
Fred has just finished developing a number of ASP pages that will be posted to his company's website. Fred does not want the page's source code viewed by anyone, so he decided to e...
- Question #76
When making a RPC function call on the local machine, what function should be used?
- Question #77
Gerald is a web security consultant for Protectors International. Gerald's main responsibility is to search the Internet for malicious and deceitful sites that the public should be...
- Question #78
What compression library is used by wiretap, the packet analyzer reader for Wireshark?
- Question #79
What is the following PERL script trying to accomplish? sub mycode_string { join("" map('$_ > 255 ? sprintf("\\x{%04x]", $_) : chr($_) = ~ /[[:cntrl:]]/ ? sprintf(\\x%02X", $_) : c...
- Question #80
What will the following SQL command accomplish? USE Accounting GO EXECUTE sp_grantdbaccess guest
- Question #81
When a developer is creating port binding shell code, why should he/she not use the NULL characters?
- Question #82
Devon is writing the following code to avoid what? <script language="vb" runat="server"> Sub Application_BeginRequest(Sender as object, E as EventArgs) If (Request.Path.Indexof(chr...
- Question #83
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...
- Question #84
Simon is writing an application that will use RPC to talk between a client and server. He will use authentication, but in his application the server does not have to know the RPC c...
- Question #85
What two encryption methods are used by the Secure Electronic Transaction system?
- Question #86
Kevin is developing a webpage using html and javascript code. The webpage will have a lot of important content and will have a number of functions that Kevin does not want revealed...
- Question #87
EC-Council 312-92 Exam 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. C...
- Question #88
Simon is going through some of Heather's code and notices an issue. What issue did Simon find in the following code? void f4(void * arg, size_t len) { char *buff = new char[100]; C...
- Question #89
Which of the following plans is documented and organized for emergency response, backup operations, and recovery maintained by an activity as part of its security program that will...
- Question #90
What function can be used with SQL to encrypt user suppliedpasswords so that they can be compared with the encrypted passwords stored on the SQL server?
- Question #91
Carl just purchased an expensive smart phone to use for personal and business use. Carl wants to protect his investment so he decides to register the unique GSM number of the phone...
- Question #92
Paul wants to capture audit information on PLSQL so he executes the following command: sqlplus "sys / as sysdba" Enter password: password123!!!! SQL> ALTER SYSTEM SET AUDIT_TRAIL =...
- Question #93
George is writing an application in Java and is using DES in the code to implement the encryption and decryption of data that will be passed. In the following code snippet, what wi...
- Question #94
Charles is writing a script in PERL for a website he is working on. The only problem he is having is that part of his script needs to call a file that a normal user does not have p...
- Question #95
Jacob is the system administrator for his company, managing over 20 Linux-based servers. Jacob wants to ensure that his servers are secure so he decides to add the following line t...
- Question #96
What type of problem or error will result from the following statement? void f2b(void * arg, size_t len) { char buffer[100]; long val = ...; long *ptr = ...; extern void (*f)(); me...
- Question #97
Gloria is the lead operation manager for a movie production company in Las Vegas. She has been asked with ensuring that the new movie created by the company will fit on one side of...
- Question #98
What functionality of the Oracle Identity Management system facilitates real-time integration of multiple directories and user repositories through a single LDAP service?
- Question #99
In the following socket programming code, who will the server allow connections from? int main(void) { int s1, s2; s1 = socket(AF_INET, SOCK_STREAM, 0); sin.sin_port = htons(30); s...
- Question #100
EC-Council 312-92 Exam Which of the following is a 16-bit field that identifies the source port number of the application program in the host that is sending the segment?
- Question #101
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...