Computer Knowledge ยท General Awareness

Information Security

4,143 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 technology security
  1. OWASP

  2. MITRE

  3. SANS

  4. WASC

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

SANS Institute is globally recognized as the largest and most trusted source for information security training and certifications, including the widely-recognized GIAC certifications. OWASP is a community focused on web application security resources, MITRE maintains security standards like ATT&CK and CWE, and WASC focuses on web application security consensus - but none provide comprehensive training and certification at SANS's scale.

Multiple choice technology security
  1. OWASP

  2. WASC

  3. NIST

  4. None of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

OWASP (Open Web Application Security Project) maintains and periodically updates the OWASP Top 10 document, which represents a broad consensus about the most critical web application security risks. This document is widely referenced across the industry. WASC, NIST, and other organizations maintain their own security standards and resources, but do not produce the OWASP Top 10.

Multiple choice technology security
  1. Web-Hacking-Incident-Database (WHID)

  2. Common Weakness Enumeration Database

  3. Common Vulnerabilities and Exposures Database

  4. None of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

WASC (Web Application Security Consortium) maintains the Web Hacking Incident Database (WHID), which tracks media-reported security incidents that can be associated with web application security vulnerabilities. The Common Weakness Enumeration (CWE) and Common Vulnerabilities and Exposures (CVE) databases are maintained by MITRE, not WASC.

Multiple choice technology security
  1. BugZilla

  2. Bugtraq

  3. VirusList

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Bugtraq is the full disclosure mailing list maintained by SecurityFocus for detailed discussion and announcement of computer security vulnerabilities. BugZilla is a bug-tracking system, VirusList is not related to vulnerability disclosure.

Multiple choice technology security
  1. OWASP

  2. WASC

  3. Both A & B

  4. None of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Both OWASP (Open Web Application Security Project) and WASC (Web Application Security Consortium) are non-profit, open communities dedicated to improving application security. OWASP is widely known for its Top 10 project, while WASC focuses on web security threats and classifications.

Multiple choice technology security
  1. Common Vulnerabilities Enumeration

  2. Common Vulnerabilities and Exposures

  3. Common Vulnerability Management

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

CVE stands for Common Vulnerabilities and Exposures, which is the standard system for referencing publicly known information security vulnerabilities. Each CVE entry provides a unique identifier for a specific security vulnerability.

Multiple choice technology security
  1. The type of users who would be accessing the data

  2. Availability, Integrity and Confidentiality

  3. The threat level the company faces

  4. Access controls protecting the data

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Data classification must be based on the CIA triad: Confidentiality, Integrity, and Availability. These are the fundamental security principles that determine how data should be protected based on its sensitivity and criticality.

Multiple choice technology security
  1. Another term for identification

  2. Method of validating a credential set

  3. Method of evaluating the access privileges

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Authentication is the process of validating a claimed identity (like username/password, token, or certificate). It verifies credentials, whereas authorization determines what access those credentials grant. Identification is just claiming an identity.

Multiple choice technology security
  1. A potential danger to information or system

  2. Any type of weakness in the system

  3. None of the above

  4. All of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A vulnerability is any weakness in a system that could be exploited to compromise security. This includes software bugs, configuration errors, or design flaws. A 'danger' is a threat, and vulnerabilities are the openings threats exploit.

Multiple choice technology security
  1. A method by which credentials are validated

  2. A method of ensuring that a subject is the entity it claims to be

  3. Its just another term for authentication

  4. Its just another term for authorization

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Identification is the process of ensuring a subject is the entity it claims to be. It's about claiming an identity (like providing a username), whereas authentication validates that claim (proving you own that username with a password).

Multiple choice technology security
  1. Technical and non technical methods

  2. Countermeasures and safeguards

  3. Physical and non logical controls

  4. Security procedures and encryption

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Effective security programs require both technical controls (firewalls, encryption, access controls) and non-technical methods (policies, procedures, training, awareness). Technical controls alone are insufficient because security also depends on people following processes and understanding their roles. Countermeasures and safeguards are subsets of technical controls, not the complete picture.

Multiple choice technology security
  1. Method of validating a credential set

  2. Method of ensuring that a subject is the entity it claims to be

  3. Method of validating the entitlements for an authenticated subject

  4. Another term for identification

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Authorization is the process of determining what permissions and access rights an authenticated subject has. It comes AFTER authentication (proving identity) and answers the question 'what is this user allowed to do?' Option B describes authentication, not authorization. Option A describes credential validation, which is part of authentication.

Multiple choice technology security
  1. Creates a seal that binds a set of data and includes an expiration timestamp

  2. Encodes the data

  3. Hashes the data

  4. Scrambles the data

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The seal() method creates a cryptographic seal that binds data together with an expiration timestamp, ensuring data integrity and freshness. Unlike encoding or hashing which only transform data, sealing provides tamper evidence by cryptographically linking the data to a specific time window. This prevents replay attacks where old captured data could be reused.

Multiple choice technology security
  1. Input Validation and OutPut Encoding

  2. Authentication and Authorization

  3. Data Protection and Cryptography

  4. HTTP and Communication Security

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Input Validation ensures data meets expected criteria before processing, while Output Encoding converts special characters to safe representations, preventing malicious scripts from executing. These two practices directly combat XSS by controlling what enters the system and how it's rendered. Authentication/Authorization and Cryptography address access control and data protection, not script injection prevention.