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 programming languages
  1. Both 1 and 2

  2. Only 1

  3. Only 2

  4. Both 1 and 3

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

The aspnet_regiis.exe tool is used to encrypt configuration sections in web.config, including connection strings. The other tools serve different purposes: aspnet_wp.exe is the worker process and svcutil.exe is for Windows Communication Foundation.

Multiple choice technology databases
  1. Setting the initialization parameter NO_PASSWORD_REUSE to TRUE

  2. Altering that user’s profile to UNLIMITED for PASSWORD_REUSE_TIME and 1 for PASSWORD_REUSE_MAX

  3. Altering that user’s profile to UNLIMITED for both PASSWORD_REUSE_TIME and PASSWORD_REUSE_MAX

  4. Using a password verify function to record the new password and compare the new passwords to those recorded previously

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

To prevent password reuse, set PASSWORD_REUSE_TIME to UNLIMITED and PASSWORD_REUSE_MAX to 1. This combination ensures a password can never be reused. Setting both to UNLIMITED allows immediate reuse. Option A mentions a non-existent parameter. Password verify functions validate complexity, not reuse history.

Multiple choice technology databases
  1. Set the initialization parameter PASSWORD_COMPLEXITY to ALPHANUM.

  2. Alter that user’s profile setting PASSWORD_COMPLEXITY to ALPHNANUM.

  3. Alter the user’s profile to use a password verify function that performs REGEX comparisons to validate the password.

  4. There is no mechanism that lets you prevent an all-numeric password

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

Oracle profiles don't have a PASSWORD_COMPLEXITY parameter. To enforce password rules like preventing all-numeric passwords, you must create a password verification function (PL/SQL) that uses REGEX to validate password format. This function is then assigned to the user's profile.

Multiple choice technology web technology
  1. true.

  2. b. false, Only via SSL it can be successfully achieved.

  3. false, you cannot encrypt elements of SOAP body at all.

  4. none of the above.

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

SOAP body elements can be encrypted using WS-Security (Web Services Security) specification, which supports XML Encryption and XML Signature standards. These allow selective encryption of specific SOAP elements using digital signatures. SSL only encrypts the entire transport/channel. WS-Security provides end-to-end, element-level security that persists through intermediaries.

Multiple choice technology web technology
  1. (A)spam

  2. (B)hacking

  3. (C)Phishing

  4. (D)Vishing

  5. (E)Simulation

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

Phishing is exactly this scenario - deceptive emails (or messages) appearing trustworthy to trick recipients into revealing sensitive information like bank details, passwords, or payment info. Spam is unsolicited bulk email, hacking is unauthorized access, vishing is phone-based, and simulation is not a standard security term.

Multiple choice technology web technology
  1. (A)Virtual keyboard

  2. (B)Finger Touching

  3. (C)Touchscreen

  4. (D)ShapeWriter

  5. (E)Dasher

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

Virtual keyboards display an on-screen keyboard that users click with a mouse, making keystroke logging ineffective since no physical keys are pressed. Keystroke loggers record hardware keystrokes, but virtual keyboards bypass this by accepting mouse input. Touchscreen and finger touching alone don't prevent logging - the virtual keyboard is the specific security feature.

Multiple choice technology web technology
  1. (A)ATM SafetyPIN

  2. (B)ATM SafetyPro

  3. (C)ATM SafetyCode

  4. (D)ATM SafetySign

  5. (E)ATM SafetyDigit

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

The ATM SafetyPIN system was a proposed safety feature where entering a PIN in reverse would silently alert police while dispensing cash normally. This would allow victims of forced withdrawals to signal for help without alerting their attackers. The concept was widely discussed but never widely implemented due to technical and procedural challenges.

Multiple choice technology security
  1. Sensitive information disclosure.

  2. Man in the middle attack.

  3. Social engineering.

  4. Possible social engineering.

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

Finding a developer's name in source code is not inherently a vulnerability - it's information disclosure. However, this information could potentially be used in social engineering attacks (e.g., impersonating the developer, crafting targeted phishing). Option D correctly identifies this as POSSIBLE social engineering, not a direct attack or guaranteed exploit.

Multiple choice technology security
  1. Phishing.

  2. Network eavesdropping.

  3. Man in the middle attack.

  4. Key logger.

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

A malicious proxy server can intercept all traffic between the user and the email service, capturing login credentials in transit (Man in the Middle attack). Phishing tricks users into revealing credentials, eavesdropping is passive listening, and keyloggers capture keystrokes locally.

Multiple choice technology security
  1. Denial of Service.

  2. Phishing.

  3. Identity Theft.

  4. SQL Injection.

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

The scenario describes an email that pretends to be from a bank and asks the recipient to click a link to verify a prize, aiming to steal login credentials; this is classic phishing.

Multiple choice technology security
  1. Browser cache poisoning.

  2. Reflected Cross-site Scripting.

  3. Persistent Cross-site scripting.

  4. Link Injection.

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

Browser cache poisoning involves injecting malicious content into the browser's cache. When the victim revisits the site, the browser loads the poisoned cached content instead of fresh content from the server. Clearing browser cache removes the poisoned content, restoring normal display. Reflected XSS doesn't persist across sessions, persistent XSS requires server-side storage, and link injection doesn't affect cache.

Multiple choice technology security
  1. Information Stealth.

  2. Sensitive Information Disclosure.

  3. Identity Theft.

  4. Cross-site scripting by MIME sniffing.

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

Identity Theft involves using someone's personal information without their permission, typically on websites they never registered with. Information stealth is not a standard security term, Sensitive Information Disclosure refers to exposing data by a system, and XSS by MIME sniffing is a specific browser vulnerability.

Multiple choice technology security
  1. Identity theft.

  2. XML Injection.

  3. Reflected cross-site scripting.

  4. Cross-site request forgery.

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

Cross-site Request Forgery (CSRF) tricks a user into executing unwanted actions on a website where they're authenticated. User B, already logged in, clicks the manipulated link and unknowingly places a bid using their session. Identity theft involves stealing personal information, XML Injection targets XML parsers, and reflected XSS requires script execution in the response.

Multiple choice technology security
  1. Session fixation.

  2. Privilege escalation.

  3. Cross-site request forgery.

  4. Identity theft.

Reveal answer Fill a bubble to check yourself
B Correct answer