Cyber Security — Chapter 1: Information Security

Complete exam-ready notes covering Information Systems, Information Security, CIA Triad, Threats, Information Assurance, Cyber Security, and Security Risk Analysis.

Cyber Security — Chapter 1: Information Security
Jinansh
Listen
0

Introduction to Information Systems

You run a hospital. Doctors need patient records. Billing needs insurance data. Admins need scheduling. All of them need different pieces of data — instantly, accurately, and from anywhere. Without a system to organize, process, and deliver that information, the hospital collapses into chaos. That system keeping everything connected is an information system.

An Information System (IS) is an integrated set of components for collecting, storing, processing, and communicating data to support decision-making, coordination, and control in an organization.

What an Information System Actually Does

An IS doesn't just store data — it transforms raw data into meaningful information. The cycle has three stages:

  • Input: Raw data is captured — a patient's temperature reading, a sales transaction, a form submission.
  • Processing: Data is organized, calculated, or filtered — tallying daily sales, flagging abnormal vitals.
  • Output: Processed information is delivered — a report, an alert, a dashboard.

[!NOTE]
Data is raw facts. Information is data that has been processed to have meaning in context. An IS bridges the two.

The Five Components Every IS Has

Component What It Is Hospital Example
Hardware Physical devices that run the system Servers, tablets, barcode scanners
Software Programs that process and present data EMR system, billing software
Data Raw facts stored and processed Patient records, drug inventory
People Users and IT staff who operate the system Nurses, sysadmins, analysts
Procedures Rules and policies for using the system Login protocols, data entry standards

Why Organizations Can't Function Without IS

  • Without IS: A bank branch in Mumbai has no idea what a customer's account looks like in Delhi.
  • With IS: Real-time account data is available across every branch instantly.

[!TIP]
Every time you use an ATM, swipe a loyalty card, or get an email confirmation — an information system is doing the heavy lifting behind the scenes.

MCQ

A hospital stores patient vitals in a database. A doctor queries the system and gets an alert when a patient's heart rate exceeds a threshold. Which component is responsible for generating this alert?

Types of Information Systems

You've now seen what an information system does at its core. But a hospital, a stock exchange, and a retail chain each need very different kinds of systems. One size doesn't fit all — and that's exactly why several distinct types of IS exist.

The IS Pyramid: From Operations to Strategy

Information systems are arranged by organizational level — from frontline operations at the bottom to executive decision-making at the top.

graph TD
    A[Executive Support Systems - ESS] --> B[Management Information Systems - MIS]
    B --> C[Decision Support Systems - DSS]
    C --> D[Transaction Processing Systems - TPS]

Each level feeds data upward and receives directives downward.

Transaction Processing Systems — The Ground Floor

Every time a customer buys something, an employee clocks in, or a parcel ships, a Transaction Processing System (TPS) records it. TPS handles high-volume, routine, structured transactions.

  • Batch processing: Transactions collected and processed together (e.g., payroll runs at month-end).
  • Real-time processing: Transactions processed instantly (e.g., ATM withdrawal updates balance immediately).

[!IMPORTANT]
TPS data is the raw fuel for every IS above it. If TPS records are wrong, every report, dashboard, and forecast built on top is also wrong.

Management Information Systems — The Middle Layer

Once transaction data is collected, managers need summaries and reports to track performance. A Management Information System (MIS) converts TPS data into structured reports — weekly sales summaries, inventory status, staff attendance.

Feature TPS MIS
Primary user Clerks, cashiers, operators Department managers
Data type Individual transactions Aggregated summaries
Output Receipts, logs, records Reports, dashboards

Decision Support Systems — When Answers Aren't Obvious

A manager knows sales dropped 20% this quarter. But why, and what to do? A Decision Support System (DSS) helps answer those questions using models, simulations, and what-if analysis.

Executive Support Systems — The View from the Top

CEOs and directors don't dig into spreadsheets — they need high-level summaries, trend graphs, and alerts. Executive Support Systems (ESS) pull data from MIS and DSS and present them in visual dashboards with drill-down capability.

Office Automation and Knowledge Work Systems

  • Office Automation Systems (OAS): Support routine office work — email, word processing, scheduling (e.g., Microsoft 365).
  • Knowledge Work Systems (KWS): Support professionals who create specialized knowledge — CAD tools for engineers, research databases for scientists.

MCQ

A logistics company wants to simulate the cost impact of switching from air freight to sea freight for its Europe routes. Which type of IS is most appropriate?

Development of Information Systems

Now that you know the types of IS, consider this: how does a system like a hospital's EMR actually get built? Software doesn't appear out of thin air — it goes through a disciplined development lifecycle.

The System Development Life Cycle (SDLC)

The System Development Life Cycle (SDLC) is a structured process organizations use to plan, create, test, and deploy an information system.

graph LR
    A[Planning] --> B[Analysis]
    B --> C[Design]
    C --> D[Implementation]
    D --> E[Testing]
    E --> F[Deployment]
    F --> G[Maintenance]
    G --> A

Phase-by-Phase Breakdown

Phase 1: Planning

Define project scope, feasibility, and resource requirements. A feasibility study checks three dimensions:

  • Technical feasibility: Can the technology support this system?
  • Economic feasibility: Is the cost justified by the benefit?
  • Operational feasibility: Will people actually use it?

Phase 2: Analysis

Gather detailed requirements from stakeholders. The output is a System Requirements Specification (SRS).

Phase 3: Design

Translate requirements into a blueprint: database schema, UI wireframes, API contracts, and system architecture.

Phase 4: Implementation

Developers write code. DBAs set up databases. Network engineers configure infrastructure.

Phase 5: Testing

  • Unit testing: Individual modules tested in isolation.
  • Integration testing: Modules tested together.
  • User Acceptance Testing (UAT): Real users validate against requirements.

Phase 6: Deployment and Maintenance

The system goes live. Maintenance handles bug fixes, performance tuning, and feature updates — feeding learnings back into the next planning cycle.

Agile vs Waterfall: Two Philosophies

Feature Waterfall Agile
Flow Sequential phases, no going back Iterative sprints with frequent feedback
Best for Fixed-scope, regulated projects Evolving requirements, startups
Risk Late discovery of errors Scope creep if not managed

[!WARNING]
Skipping the Analysis phase is the #1 reason IS projects fail. Building the wrong thing perfectly is still failure.

MCQ

A government agency builds a new tax-filing portal using a strictly sequential process where each phase must be signed off before the next begins. During UAT, users discover a critical design flaw. What is the most significant consequence in this model?

Introduction to Information Security

You've just deployed your hospital's IS. Patient records, financial data, diagnostic images — all online. Now someone else wants that data too. A disgruntled employee exports patient records. A hacker encrypts your database and demands ransom. A misconfigured server leaks lab results publicly. Your IS is only as useful as it is secure. That's where information security begins.

Information Security (InfoSec) is the practice of protecting information and information systems from unauthorized access, use, disclosure, disruption, modification, or destruction.

The CIA Triad: The Three Pillars of InfoSec

Every security decision traces back to three core properties:

graph TD
    A[Information Security] --> B[Confidentiality]
    A --> C[Integrity]
    A --> D[Availability]
    B --> E[Only authorized users access data]
    C --> F[Data is accurate and unaltered]
    D --> G[Data is accessible when needed]
  • Confidentiality: Ensures data is accessible only to those authorized. Breached by eavesdropping, data leaks, or stolen credentials.
  • Integrity: Ensures data has not been tampered with. Breached by man-in-the-middle attacks, file corruption, or unauthorized edits.
  • Availability: Ensures systems are up and accessible when needed. Breached by DDoS attacks, hardware failure, or ransomware.

[!NOTE]
The CIA Triad isn't a company — it's the foundational model every security policy is built on.

Beyond CIA: The Extended Security Properties

Property Meaning Example
Authentication Verifying who someone is Login with OTP
Authorization Verifying what they're allowed to do Role-based access control
Non-repudiation Ensuring an action can't be denied Digital signatures on contracts
Accountability Tracing actions to individuals Audit logs

Security vs. Privacy vs. Safety

  • Security protects systems and data from threats.
  • Privacy controls who has access to personal information.
  • Safety protects people from physical harm caused by system failures.

A hospital IS must ensure all three: secure records, private patient data, and safe drug-dispensing systems.

MCQ

A bank's transaction system is fully encrypted and access-controlled, but it goes down for 6 hours due to a DDoS attack. Which pillar of the CIA Triad has been violated?

Need for Information Security

You now understand what information security is. But why does every organization — from a startup to a government — need it? Because the cost of not having it is catastrophic.

What's Actually at Risk

Consider a university's IS holding student grades, staff salaries, research data, and financial records. A breach could mean:

  • Financial loss: Fraudulent transactions, ransom payments, legal fines.
  • Reputational damage: Loss of student and partner trust.
  • Legal liability: Violations of data protection laws (GDPR, IT Act).
  • Operational disruption: Systems down, exams delayed, services halted.

[!CAUTION]
The average cost of a data breach globally exceeds $4 million USD. For healthcare, it's nearly double that.

Why Organizations Are More Vulnerable Than Ever

  • Digitization: Everything is now online — increasing the attack surface dramatically.
  • Remote work: Employees connect from unsecured home networks.
  • Cloud adoption: Data lives outside the organization's physical control.
  • Interconnected systems: One compromised vendor can expose your entire supply chain.

Regulatory and Legal Drivers

Regulation Scope Requirement
GDPR (EU) Personal data of EU residents Breach notification within 72 hours
HIPAA (USA) Healthcare records Encryption and access controls
IT Act 2000 (India) Electronic records and cybercrime Penalties for unauthorized access
PCI-DSS Payment card data Secure card data storage and transmission

[!IMPORTANT]
Non-compliance isn't just a fine risk — it can mean loss of operating licenses and criminal liability for executives.

MCQ

A SaaS company stores customer data on a third-party cloud provider. The cloud provider suffers a breach, exposing customer records. Under GDPR, who bears primary responsibility for notifying affected individuals?

Threats to Information Systems

You've secured your university IS. Passwords are strong, servers are patched, backups run nightly. Then a student clicks a phishing email, and the attacker has admin access. Understanding what threatens your system is the first step to defending it.

A threat is any potential event or action that could exploit a vulnerability to cause harm to an information system.

Threat vs. Vulnerability vs. Risk

  • Threat: The attacker or event (e.g., a phishing email).
  • Vulnerability: The weakness being exploited (e.g., untrained staff).
  • Risk: The probability and impact of the threat exploiting the vulnerability.
graph LR
    T[Threat] -->|exploits| V[Vulnerability]
    V -->|creates| R[Risk]
    R -->|impacts| A[Asset]

Categories of Threats

Human Threats

  • External attackers: Hackers, criminal groups, nation-state actors.
  • Insider threats: Disgruntled employees, contractors with excess privileges.
  • Social engineering: Manipulating people into revealing credentials (phishing, pretexting, vishing).

Technical Threats

Threat How It Works Target
Malware Malicious software infects systems Files, system processes
Ransomware Encrypts data, demands payment Entire file systems
SQL Injection Malicious queries exploit DB vulnerabilities Databases
DDoS Attack Floods server with traffic to exhaust resources Availability
Man-in-the-Middle Intercepts communication between two parties Data in transit

Physical Threats

  • Theft of laptops or USB drives containing sensitive data.
  • Unauthorized access to server rooms.
  • Natural disasters destroying hardware without adequate backups.

Environmental Threats

  • Power outages crashing unprotected systems.
  • Flooding or fire destroying on-premise infrastructure.

[!WARNING]
Social engineering bypasses all technical defenses. An attacker who convinces a helpdesk employee to reset a password has effectively defeated your firewall, antivirus, and encryption combined.

Passive vs. Active Attacks

Type What Happens Example
Passive Attack Attacker monitors/captures data without altering it Eavesdropping, traffic analysis
Active Attack Attacker modifies, deletes, or disrupts data Ransomware, DDoS, spoofing

[!NOTE]
Passive attacks are harder to detect because they leave no trace in system logs. Active attacks are more visible but cause immediate damage.

MCQ

An attacker sets up a fake Wi-Fi hotspot at a university café. Students connect to it, and the attacker silently captures their login credentials without modifying any traffic. Which type of attack is this, and which CIA property does it primarily violate?

Information Assurance

Threats are everywhere, as you've now seen. But reacting to threats after they happen is too late. Information Assurance is the discipline of building proactive guarantees that information remains protected — before, during, and after an attack.

Information Assurance (IA) is the practice of managing risks related to the use, processing, storage, and transmission of information by ensuring its confidentiality, integrity, availability, authenticity, and non-repudiation.

IA vs. Information Security: The Key Distinction

  • Without IA: You install antivirus software and hope nothing goes wrong.
  • With IA: You establish policies, train staff, audit systems, respond to incidents, and continuously verify that protections are working.

IA is the strategy. Information security is a set of tools within that strategy.

The Five Pillars of Information Assurance

Pillar Meaning Example Control
Confidentiality Only authorized parties access information Encryption, access control lists
Integrity Information is accurate and unmodified Checksums, digital signatures
Availability Systems are accessible when needed Redundancy, failover clusters
Authenticity Information originates from a legitimate source PKI certificates, MFA
Non-repudiation Actions cannot be denied after the fact Audit logs, digital signatures

IA Controls: Three Layers of Defense

Administrative Controls

  • Acceptable Use Policy (AUP)
  • Employee security awareness training
  • Incident response plans
  • Background checks for privileged access

Technical Controls

  • Firewalls and intrusion detection systems (IDS)
  • Multi-factor authentication (MFA)
  • Data encryption in transit and at rest
  • Automated patch management

Physical Controls

  • Biometric access to server rooms
  • CCTV surveillance
  • Cable locks and equipment tagging
  • Secure document disposal (shredders)

[!TIP]
Defense-in-depth means layering all three control types. An attacker who bypasses the firewall still faces MFA. One who steals a laptop still can't read encrypted data.

MCQ

A company mandates annual security awareness training, enforces a clean-desk policy, and maintains a formal incident response plan. These measures are best classified as:

Cyber Security and Security Risk Analysis

You've built information assurance into your university IS. Now consider this: your IS doesn't exist in a vacuum. It connects to the internet, to vendor systems, to student mobile devices. The moment your system touches a network, you've entered the domain of cyber security — and every connection is a potential attack surface.

Cyber Security is the practice of protecting systems, networks, and programs from digital attacks, unauthorized access, and damage. It extends information security into the networked, internet-connected world.

Cyber Security vs. Information Security

Dimension Information Security Cyber Security
Scope All information (physical and digital) Digital systems and networks only
Threats covered Theft, fraud, natural disaster, human error Hacking, malware, network attacks
Medium Paperwork, hardware, software Internet, cloud, connected devices
Example Locking a filing cabinet Blocking a DDoS attack

The Cyber Security Threat Landscape

graph TD
    A[Cyber Threats] --> B[Network Attacks]
    A --> C[Application Attacks]
    A --> D[Endpoint Attacks]
    A --> E[Social Engineering]
    B --> F[DDoS, Packet Sniffing, Spoofing]
    C --> G[SQL Injection, XSS, CSRF]
    D --> H[Ransomware, Keyloggers, RATs]
    E --> I[Phishing, Vishing, Pretexting]

Security Risk Analysis

You can't protect everything equally. Security Risk Analysis is the process of identifying, evaluating, and prioritizing risks so you invest security resources where they matter most.

Step 1: Asset Identification

List every asset that needs protection — databases, applications, physical servers, intellectual property, staff credentials.

Step 2: Threat Identification

For each asset, identify applicable threats — who would target it, and how.

Step 3: Vulnerability Assessment

Identify weaknesses in current controls — unpatched software, weak passwords, open ports.

Step 4: Risk Calculation

Risk is calculated as:

Risk = Likelihood × Impact
Likelihood \ Impact Low Medium High
High Medium Risk High Risk Critical
Medium Low Risk Medium Risk High Risk
Low Negligible Low Risk Medium Risk

Step 5: Risk Treatment

Strategy What It Means Example
Avoid Eliminate the risky activity Stop storing credit card numbers
Mitigate Reduce likelihood or impact Add MFA, patch systems
Transfer Shift the risk to another party Cyber insurance, outsourcing
Accept Acknowledge and monitor low-risk items Minor UI bugs with no security impact

[!IMPORTANT]
Risk analysis is not a one-time event. Threats evolve, new assets appear, and old controls become obsolete. Organizations must run risk assessments continuously.

Cyber Security Frameworks

Framework Origin Core Focus
NIST CSF USA (National Institute of Standards) Identify, Protect, Detect, Respond, Recover
ISO/IEC 27001 International Information security management system (ISMS)
CIS Controls Center for Internet Security Prioritized security actions for organizations

[!NOTE]
India's CERT-In mandates that organizations report cybersecurity incidents within 6 hours of detection — one of the strictest timelines globally.

MCQ

A university's risk assessment finds an unpatched SQL injection vulnerability in its student portal (50,000 records). Likelihood: High. Impact: High. The IT team proposes input validation and a database engine patch. Under the risk treatment framework, this is best described as: