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

Multiple choice general knowledge
  1. Confirmation

  2. Cash Tolerance

  3. Confidentiality

  4. Conflict Control

Reveal answer Fill a bubble to check yourself
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.

Multiple choice general knowledge math & puzzles
  1. Entering a web address

  2. E-mail attachments

  3. Pressing refresh too many times

  4. None of these

Reveal answer Fill a bubble to check yourself
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.

Multiple choice general knowledge science & technology
  1. A malicious techique of tricking web users into revealing confidential information

  2. A device that sends and receivers data in a bit second

  3. A form of computer engineering

  4. A digital process that in used to display an image on the monitor

Reveal answer Fill a bubble to check yourself
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.

Multiple choice general knowledge
  1. Configuration management

  2. Security management

  3. Performance management

  4. Authentication Management

Reveal answer Fill a bubble to check yourself
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).

Multiple choice general knowledge
  1. Hackers

  2. Spam

  3. viruses

  4. identity theft

Reveal answer Fill a bubble to check yourself
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.

Multiple choice general knowledge science & technology
  1. Sircam

  2. Code Red

  3. Beast

  4. Sadmind

Reveal answer Fill a bubble to check yourself
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.

Multiple choice general knowledge science & technology
  1. Mocmex

  2. OSX/Leap-A

  3. Torpig

  4. Rustock.C

Reveal answer Fill a bubble to check yourself
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.

Multiple choice general knowledge science & technology
  1. Basic

  2. Form-Based

  3. Client

  4. Digest

Reveal answer Fill a bubble to check yourself
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.

Multiple choice general knowledge science & technology
  1. Avoid Escape Special Characters

  2. Use of non Parameterized API

  3. Input Validation against Whitelist

  4. Avoid sending the wrong data at first place as request parameter.

Reveal answer Fill a bubble to check yourself
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.

Multiple choice general knowledge science & technology
  1. Injection

  2. Cross Site Request Forgery

  3. Cross Site Scripting

  4. Failure to Restrict URL Access

Reveal answer Fill a bubble to check yourself
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).

Multiple choice general knowledge science & technology
  1. FileSystem

  2. Web Application

  3. Production Server

  4. Browser InterPretation

Reveal answer Fill a bubble to check yourself
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.

Multiple choice general knowledge science & technology
  1. Broken Authorization

  2. Broken Authentication and Session Management

  3. Security Misconfiguration

  4. Cross Site Request Forgery

Reveal answer Fill a bubble to check yourself
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).

Multiple choice general knowledge science & technology
  1. User able to access the page which he/she is not Authorised.

  2. Exposing Authentication/Session details as part of URL

  3. Sending Financial Data request as part of the request URL.

  4. None of the Above

Reveal answer Fill a bubble to check yourself
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.