DON'T WANT TO MISS A THING?

Certification Exam Passing Tips

Latest exam news and discount info

Curated and up-to-date by our experts

Yes, send me the newsletter

Prepare Strategically for the EC-Council ECSP 312-92 Exam with Practice Tests

SPOTO's EC-Council ECSP 312-92 practice questions are crucial for candidates preparing for the EC-Council Certified Secure Programmer (ECSP) exam. These practice tests offer a comprehensive range of exam questions and answers that closely simulate the actual exam format. By regularly engaging with SPOTO's practice questions and mock exams, candidates can simulate exam conditions, identify weak areas, and enhance their exam preparation. SPOTO also provides extensive study materials and exam resources to supplement the practice questions, ensuring candidates have all the necessary tools to succeed. With SPOTO's effective exam preparation resources, candidates can confidently approach the ECSP exam and increase their chances of passing successfully.
Take other online exams

Question #1
What is the security and cryptographic framework used in Mac OS X called?
A. AppleSecure
B. CSAPI
C. CDSA
D. Secure API
View answer
Correct Answer: C
Question #2
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? certtool c k=/Users/root/Library/Keychains/certkc
A. Remove any unnecessary permissions on the file "certkc"
B. Create keychain called "certkc"
C. Copy the root certificate of the server to the file "certkc"
D. Import encryption key into the file "certkc"
View answer
Correct Answer: B
Question #3
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 encode the pages to make the source code unusable. What will the following command accomplish? screnc /e asp *.* c:\tmp
A. Create an MD5 hash for all ASP files in the c:\tmp directory
B. Encode all ASP files in current directory as ASP files and place them in the c:\tmpdirectory
C. Encode all ASP files and place them in the c:\tmp directory
D. Encode all ASP files in in the c:\tmp and place them in the default IIS virtual directory
View answer
Correct Answer: B
Question #4
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 to the /etc/sysctl.conf file: net.ipv4.conf.all.rp_filter = 1What will this line accomplish?
A. Prevent spoofing of incoming packets that appear to be from the computer's defaultgateway
B. Prevent spoofing of incoming packets that appear to be from local machine
C. Allow incoming packets only from own subnet
D. Allow outgoing packets only through primary network card
View answer
Correct Answer: B
Question #5
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)(); memcpy(buff, arg, len);*ptr = val;f();return;
A. Pointer subterfuge
B. Heap smashing
C. Virtual pointer smashing
D. Sign error
View answer
Correct Answer: A
Question #6
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 a DVD disk that will be sold to the public. If the movie mentioned is a full-length production and must fit on one side of the disk, what level of compression must Gloria use?
A. 100 Mb/s
B. 10
C. 3
D. 7
View answer
Correct Answer: D
Question #7
What functionality of the Oracle Identity Management system facilitates real-time integration of multiple directories and user repositories through a single LDAP service?
A. Access and Identity
B. Virtual directory
C. Federation
D. Provisioning
View answer
Correct Answer: B
Question #8
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); sin.sin_family = AF_INET; sin.sin_addr.s_addr = 0; bind(sockfd, (struct sockaddr *)&sin, sizeof(sin)); listen(sockfd, 10); s2 = accept(sockfd, 10); write(s2, "hello\n", 6)
A. Only those coming in on TCP port 10
B. Only those on the same subnet as the server
C. Only those coming in on UDP port 10
D. Anyone
View answer
Correct Answer: D
Question #9
When making a RPC function call on the local machine, what function should be used?
A. ncacn_ip_tcp
B. lclrpc
C. ncalrpc
D. get_local_rpc
View answer
Correct Answer: C
Question #10
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 aware of.Gerald was tipped off about a particular site and is now looking over its source code in a protected environment. Gerald finds the following snippet particularly interesting. What hasGerald stumbled upon?