security Online Quiz - 66
Description: security Online Quiz - 66 | |
Number of Questions: 32 | |
Created by: Aliensbrain Bot | |
Tags: security |
HTTP Vs HTTPS
As a preventive measure what needs to be done while accessing the Database?
How many types of Privilege Escalations can happen in the Web Applications?
What can be the Best Preventive measures against different vulnerabilities?
Which of the following vulnerability can not be handled by Input Validation?
Which validation can be bypassed easily?
Allowing user input to control paths used in file system operations may results in----
What is a Log File.
HTTP Vs HTTPS
Cookie is—
It is 802.11 network detector, packet sniffer, and intrusion detection system which work passively.
The first virus that used polymorphic engine to mutate itself to avoid detection by Anti-Virus but keep the base algorithm same is
A type of computer threat that exploits vulnerabilities in Application that is not yet known to vendor or others and for which a patch is yet to be released
The last Service Pack for Windows XP was
A technique where in a hacker masquerades a fake website to look like the original one to obtain sensitive information from a victim
A variant of computer malware whose name was influenced by Greek Mythology
Pick Odd One Out :
Which of the Following uses Symetric Metrix to Encrypt data
How many versions does a DES algorithm have
What is the Vulnerability of AES Encryption
How many Standard versions of AES algorithm are available
How do you fix the unbounded string copy in the following code? char fname[20]; /* 1 / cout << “Enter First Name:”; / 2 / cin >> fname ; / 3 */
Are there any memory issues in the following code? Please assume that variable inputsize has the correct size. int add_num_array(int inputsize, int num) { int newnum = malloc (inputsize * sizeof(int)); / 1 */ int i; for (i=0; i
What is the vulnerability in this code? char output[20]; /* Assume data is a character array with value %200d asdf */ sprintf(output, data);
What is the vulnerability in this code? int main(int argc, char * argv[]) { printf (argv[1]); }
What is the possible vulnerability in this code? unsigned int total, userinput1, userinput2; userinput1 = receiveInput(); userinput2 = receiveInput(); total = userinput1 + userinput2;