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 technology security
  1. White list validation

  2. Blacklist validation

  3. Mix validation

  4. No validation

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

This is whitelist validation because it explicitly defines allowed characters (A-Z, a-z) using the pattern [^A-z] and rejects anything that doesn't match. Whitelist validation is more secure because it only permits known good characters, rejecting everything else as the code does with 'Invalid Input'.

Multiple choice technology security
  1. Blacklist validation

  2. Whilelist validation

  3. Hibrid validation

  4. No validation

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

This is blacklist validation because it explicitly removes specific dangerous characters (<, >, {, }, \, [, ], ;, &) from the input. Blacklist validation attempts to filter out known bad patterns but is less secure than whitelist validation because attackers can use encoding or alternative characters not in the blacklist.

Multiple choice technology security
  1. 1 AND 4

  2. 2 AND 4

  3. 1 AND 5

  4. 2 AND 5

  5. 1 AND 2 AND 4

  6. 1 AND 2 AND 5

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

XSS prevention requires two complementary approaches: Input Validation (whitelist allowed characters/patterns) and Output Encoding (escape dynamic output based on context). These neutralize malicious scripts. Releasing resources, least privilege, and URL access control address different security concerns (resource leaks, privilege escalation, authorization).

Multiple choice technology security
  1. Buffer Overflow

  2. Command Injection

  3. CSRF

  4. XSS

  5. XST

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

The Java code uses Runtime.exec() to execute 'cmd.exe /C' without proper input validation. If user input were concatenated into this command string, an attacker could inject arbitrary system commands after the /C flag. This is a classic Command Injection vulnerability where the application passes unsanitized data directly to a system shell. Buffer Overflow (A) would require memory corruption, CSRF (C) requires cross-site request forgery context, XSS (D) needs web page output rendering, and XST (E) relates to cross-site tracing.

Multiple choice technology security
  1. Credit Card Numbers cannot be stored in database

  2. Credit Card numbers can be stored in database but not in plain text

  3. Avoid storing credit card numbers if not necessary

  4. Option 1 AND Option 3

  5. Opion 2 AND Opion 3

  6. None of above

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

To comply with security standards like PCI-DSS, applications should avoid storing credit card numbers unless absolutely necessary. If storage is required, they must never be stored in plain text and must be encrypted.

Multiple choice technology web technology
  1. getApplicationId()

  2. getSecurityLevel()

  3. getAuthenticationLevel()

  4. getApplicationSecurityLevel()

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

To retrieve the current security level in a PS (PeopleSoft) application, the getSecurityLevel() method is the appropriate API call. The other options are incorrect: getApplicationId() retrieves app identifier, getAuthenticationLevel() is not the standard method, and getApplicationSecurityLevel() is not the correct method name.

Multiple choice technology web technology
  1. User must be signed in with a digital certificate

  2. User must be signed in and provide a PIN to use this application.

  3. User must be signed in to USAA.COM to use this application

  4. User does not need to be signed in to USAA.COM to use application.

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

Security level 0 indicates no authentication is required. This is the lowest security level where users can access the application without signing in. Higher security levels (1, 2, etc.) require various forms of authentication like digital certificates or PINs.

Multiple choice technology web technology
  1. User does not need to be signed in to XXX.COM to use application

  2. User must be signed in to XXX.COM to use this application.

  3. User must be signed in with digital certificate

  4. User must be signed in and provide a PIN to use this application.

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

In many web application security frameworks, Security Level '0' represents anonymous access, meaning the user does not need to be signed in to access the application.

Multiple choice technology security
  1. finding users in data base

  2. to attck viruses

  3. to get user ans password from servers

  4. none of above

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

A brute force attack is a trial-and-error method used to obtain information, such as user passwords or personal identification numbers, by systematically trying all possible combinations until the correct one is found.

Multiple choice technology enterprise content management
  1. Private Knowledge Inrastructure

  2. Personal Key Identifier

  3. Public Key Infrastructure

  4. Pretty Keen Interface

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

PKI stands for Public Key Infrastructure, which is a system of digital certificates, authorities, and keys used to secure communications and verify identities.

Multiple choice technology web technology
  1. You can use an Fire wall to hide

  2. You can use an http Handler to hide

  3. You can use an ISAPI filter to hide

  4. You can never hide.

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

An ISAPI filter can intercept IIS web server responses and modify headers (such as the 'Server' header) to hide or spoof the identity of the web server. Firewalls block traffic but do not natively rewrite application-layer headers in this manner.

Multiple choice technology web technology
  1. Denial of service attacks

  2. Degraded on service attacks

  3. No such thing in IIS Vocabulary

  4. None of these

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

DOS in the context of IIS and web servers refers to Denial of Service attacks. These attacks flood the server with malicious requests, making it unavailable to legitimate users. IIS has built-in features to mitigate such attacks.

Multiple choice technology mainframe
  1. DFHEIBDK, DFHCOMMAREA

  2. DFHEIBLK, DFHCOMNAREA

  3. DFHEEBLK, DFHCOMMAREA

  4. DFHEIBLK, DFHCOMMAREA

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

When a CICS program is compiled, the precompiler includes DFHEIBLK (Execute Interface Block) and DFHCOMMAREA (Communication Area) code. DFHEIBLK contains control information and parameter passing data, while DFHCOMMAREA is used for data communication between transactions.

Multiple choice technology web technology
  1. Encryption

  2. Tunneling

  3. SSL

  4. Public Key Infrastructure (PKI)

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

PKI (Public Key Infrastructure) is the comprehensive system of encryption technologies, services, and software that organizations use to secure data transactions and business communications. It includes certificate authorities, digital certificates, and key management. Encryption and Tunneling are techniques, SSL is a specific protocol, but PKI is the complete infrastructure.