Computer Knowledge · General Awareness
Information Security
4,634 Questions
Information security involves protecting computer systems and data from unauthorized access, cyber threats, and damage. It is a core part of the computer knowledge section in various banking and government exams. Practicing these concepts helps in understanding digital signatures, network security, and access control effectively.
Cybersecurity threatsAccess controlCryptography basicsSecurity risk managementDatabase protection
Information Security Questions
-
Confirmation
-
Cash Tolerance
-
Confidentiality
-
Conflict Control
C
Correct answer
Explanation
Confidentiality is the principle of protecting information from unauthorized disclosure or access. It's a fundamental concept in information security and privacy, ensuring that sensitive data is only accessible to authorized individuals or systems. Confirmation and Cash Tolerance are unrelated terms, while Conflict Control refers to managing disputes, not data protection.
-
Entering a web address
-
E-mail attachments
-
Pressing refresh too many times
-
None of these
B
Correct answer
Explanation
Email attachments are the most common vector for computer viruses. When a user opens an infected file attached to an email, the malicious code executes. Simply visiting a URL is generally safer, though not entirely risk-free.
-
A malicious techique of tricking web users into revealing confidential information
-
A device that sends and receivers data in a bit second
-
A form of computer engineering
-
A digital process that in used to display an image on the monitor
A
Correct answer
Explanation
Clickjacking is a malicious technique where attackers trick users into clicking on something different from what they perceive by overlaying invisible or disguised elements on a webpage. While option A mentions revealing confidential information, clickjacking is more broadly about deceiving users into performing unintended actions like deleting content, changing settings, or making unwanted purchases. The description in A captures the deceptive essence but is slightly narrow in focus.
-
Configuration management
-
Security management
-
Performance management
-
Authentication Management
B
Correct answer
Explanation
Security management in LAN software includes access control, user activity logging, and auditing - exactly what the question describes. Configuration management handles setup changes, performance management monitors network speed/reliability, and authentication is a subset of security (identity verification only).
-
Hackers
-
Spam
-
viruses
-
identity theft
B
Correct answer
Explanation
Hackers, viruses, and identity theft are all direct security threats that can compromise systems and personal data. Spam, while annoying and potentially malicious (like phishing emails), is primarily a nuisance rather than a fundamental security risk in the same category. The question asks for what's NOT a 'real security and privacy risk' - spam is more of an inconvenience than the direct threats posed by the other options.
-
Wabbit
-
Vienna
-
Melissa
-
Pakistani flu
D
Correct answer
Explanation
'Pakistani flu' (also known as Brain) is considered the first IBM PC compatible virus, created in 1986 by two brothers in Pakistan. It infected the boot sector of floppy disks.
-
Sircam
-
Code Red
-
Beast
-
Sadmind
C
Correct answer
Explanation
Beast is widely recognized as one of the pioneering Remote Access Trojans (RATs), first emerging around 2002. Unlike Sircam (a mass-mailing worm), Code Red (an IIS web server worm), or Sadmind (a Solaris/IIS worm), Beast was specifically designed as a trojan that allowed attackers to remotely control infected Windows systems. It introduced key features like reverse connection and server injection that became standard in later RATs.
-
Mocmex
-
OSX/Leap-A
-
Torpig
-
Rustock.C
B
Correct answer
Explanation
OSX/Leap-A (also called Oompa-Loompa) in 2006 is recognized as the first malware specifically targeting Mac OS X. Mocmex targeted Windows. Torpig is a Windows trojan. Rustock.C is a Windows botnet. Leap-A was a significant milestone as it demonstrated that Mac OS X was not immune to malware, though it required user interaction to spread via iChat.
-
Piggybacking
-
Social Engineering
-
Hacking
-
Phishing
B
Correct answer
Explanation
Social Engineering involves manipulating people to gain access or information by impersonating someone trustworthy. Piggybacking is tailgating physically behind authorized persons, phishing uses fraudulent emails, and hacking is technical exploitation.
-
Basic
-
Form-Based
-
Client
-
Digest
A,B
Correct answer
Explanation
Basic authentication and Form-Based authentication don't encrypt data - they send credentials in plaintext (Basic uses Base64 encoding which is easily reversible). Client Certificate and Digest authentication provide encryption - Digest uses a one-way hash and Client Certificate uses SSL/TLS encryption.
-
Avoid Escape Special Characters
-
Use of non Parameterized API
-
Input Validation against Whitelist
-
Avoid sending the wrong data at first place as request parameter.
C
Correct answer
Explanation
Input validation against a whitelist is a correct injection prevention mechanism. A whitelist defines exactly what inputs are allowed, rejecting anything that doesn't match. This prevents injection attacks by ensuring only valid, expected data enters the system. Avoid escaping special characters would make you vulnerable, non-parameterized APIs are vulnerable, and while avoiding wrong data helps, validation against whitelist is the technical prevention mechanism.
-
Injection
-
Cross Site Request Forgery
-
Cross Site Scripting
-
Failure to Restrict URL Access
C
Correct answer
Explanation
The description 'text-based attack data that exploit the interpreter in the browser' is the textbook definition of Cross Site Scripting (XSS). In XSS attacks, malicious scripts are injected into web pages viewed by other users, exploiting the browser's script interpreter. This distinguishes it from Injection (server-side interpreter), CSRF (exploiting authenticated sessions), and URL access restrictions (authorization bypass).
-
FileSystem
-
Web Application
-
Production Server
-
Browser InterPretation
D
Correct answer
Explanation
Cross Site Scripting (XSS) specifically targets the browser's interpreter - it exploits how browsers interpret and execute scripts within web pages. Unlike attacks that target servers (B, C) or file systems (A), XSS payloads run in the victim's browser context. The term 'Browser Interpretation' (D) correctly identifies this client-side execution environment.
-
Broken Authorization
-
Broken Authentication and Session Management
-
Security Misconfiguration
-
Cross Site Request Forgery
B
Correct answer
Explanation
This scenario is a classic example of Broken Authentication and Session Management - the user failed to properly terminate their session (logout), allowing an attacker to hijack the authenticated session. The vulnerability is that session identifiers remained valid and accessible, enabling the attacker to impersonate the legitimate user without re-authenticating. This differs from authorization issues (A), security misconfiguration (C), or CSRF (D).
-
User able to access the page which he/she is not Authorised.
-
Exposing Authentication/Session details as part of URL
-
Sending Financial Data request as part of the request URL.
-
None of the Above
B
Correct answer
Explanation
Exposing session IDs or authentication credentials in URLs (B) is a valid scenario of Broken Authentication and Session Management. URLs get logged in browser history, server logs, and referrer headers - exposing sensitive authentication data in URLs allows attackers to capture session identifiers. Option (A) describes an authorization issue, (C) is about data exposure, and (B) is the correct authentication/session management vulnerability.