security final ch5

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/39

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:08 PM on 6/5/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

40 Terms

1
New cards

Access Control

It is the set of rules and mechanisms a company uses to limit who can get to physical spaces (buildings, server rooms) and electronic resources (files, systems, databases). Think of it as the locks and keys of security.

2
New cards

the three pillars of access control.

  • Authentication

  • Authorization

  • Auditing

3
New cards

Types of Credentials

  • Knowledge

  • Possession

  • Biometric

  • Behaviour

4
New cards

Two-Factor Authentication

Uses two different types of credentials together โ€” e.g., an access card (what you have) + a PIN (what you know). This is called defence in depth โ€” one layer failing doesn't mean total compromise.

5
New cards

Limitations 2factor auth

Can still be defeated by

  • a Trojan horse on the user's PC (which intercepts the session after login)

  • a man-in-the-middle attack via a fake website that relays credentials in real time.

6
New cards

Types of Access Control

  • Individual Access Control

  • Role-Based Access Control (RBAC)

7
New cards

MAC โ€” Mandatory Access Control

Access rules are set by higher authorities and cannot be changed by departments or individuals. Very strict. Used in military/government environments. Provides the strongest security but is extremely difficult to implement and manage.

8
New cards

DAC โ€” Discretionary Access Control

Departments or individuals can modify the access rules set by higher authorities within certain limits. More flexible and practical for corporate environments, but weaker than MAC.

9
New cards

Individual Access Control

access rules are set for each person's account one by one. Flexible but becomes unmanageable at scale โ€” every time someone joins or leaves, every rule must be updated manually.

10
New cards

Role-Based Access Control (RBAC)

Access rules are assigned to roles (e.g. "Buyer", "Manager", "Engineer").

Then individual accounts are assigned to roles.

Cheaper and less error-prone โ€” change the role, and everyone in it gets updated automatically.

11
New cards

Multilevel Security

Resources are rated by sensitivity level. People are given a matching clearance level. The rule is simple: you can only access resources at or below your clearance level.

12
New cards

Secure Areas

  • Building Perimeter

13
New cards

Building Perimeter

  • Single point of entry (one door in, one door out)

  • No gaps in the building perimeter

  • Reception area must be constantly staffed

14
New cards

Entry Controls

15
New cards

Delivery & Loading Areas

  • No delivery/pick-up staff allowed inside

  • Incoming shipments must be inspected and logged

  • Outgoing and incoming shipments kept separate

16
New cards

Offices & Rooms

  • Locate sensitive areas away from public access

  • Do NOT list them on internal maps or directories

  • Limited access mechanisms (locks, key cards)

17
New cards

Environmental Threats

  • No hazardous or combustible material near sensitive areas

  • Back-ups and disaster recovery must be in a different building

18
New cards

Working in Secure Areas

  • No cameras or data recording equipment allowed

  • Staff must not be left unsupervised

  • Inspections of people entering and leaving

19
New cards

Secure Equipment

  • Equipment Siting

  • Cabling Security

  • Offsite Maintenance

  • Secure Disposal

20
New cards

Secure Disposal

  • Remove all sensitive information before disposal or reuse

  • Log all removals

  • Limit time property can be offsite

  • Proper authorisation required

21
New cards

Offsite Maintenance

  • Permission required to take equipment offsite

  • All sensitive data removed before leaving

22
New cards

Cabling Security

  • Wires underground or inside walls

  • Use conduits if not possible

  • Wiring closets must be locked and monitored

23
New cards

Equipment Siting

"Siting" = placing equipment. Minimise who can access it. Protect from water, smoke, vandalism. Have uninterruptible power supplies (UPS) and generators. Test utilities frequently.

24
New cards

Other Physical Threats

  • piggybacking / Tailgating

  • Terrorism Countermeasures

  • CCTV Considerations

  • Dumpster Diving

25
New cards

Dumpster Diving

Attackers search trash bins for sensitive info (printed documents, discarded drives). Keep bins inside corporate premises and monitor until officially removed. PC locks and strong login screens also help.

26
New cards

CCTV Considerations

  • Tapes wear out โ€” digital storage preferred

  • High-resolution cameras: better but expensive + lots of storage

  • Low-resolution: may not be good enough for identifying people

  • Use motion sensing to reduce storage needs

27
New cards

Piggybacking / Tailgating

An unauthorised person follows an authorised employee through a secure door. It's psychologically difficult to stop someone who looks like they belong. But it is worth the effort to prevent with policies and training.

28
New cards

terrorism Countermeasures

  • Building setback from the street (blast distance)

  • Armed guards

  • Bullet-proof glass

29
New cards

password General Policies

  • Regularly test the strength of internal passwords

  • Never reuse the same password across multiple sites

  • Use a password manager

  • Enforce password expiry (rotation policies)

  • Disable passwords that are no longer needed

  • No shared passwords (makes auditing impossible)

30
New cards

Strong Password Rules

  • At least 8 characters long

  • Contains upper and lower case letters โ€” change of case NOT at the beginning

  • Contains a digit (0โ€“9) โ€” NOT at the end

  • Contains another keyboard character (e.g. !@#$%) โ€” NOT at the end

  • Example of a strong password: tri6#Vial

  • Completely random passwords are best but tend to get written down

31
New cards

Biometric Authentication

Authentication using biological measurements โ€” things unique to your body (fingerprint, iris, face) or how you behave (the way you type, your signature, your walk). The goal is to eventually replace reusable passwords.

32
New cards

How a Biometric System Works

  • enrolment scan

  • key feature extraction

  • Template Storage

33
New cards

False Acceptance Rate FAR

The percentage of people who are accepted by the system even though they should NOT be. An imposter is let in. This is a security violation.

34
New cards

False Rejection Rate FRR

The percentage of people who are rejected by the system even though they should be accepted. A legitimate user is locked out. This is an inconvenience.

35
New cards

Error

the system makes a mistake even when the subject is NOT trying to cheat it

36
New cards

Deception

The subject is actively trying to fool the system โ€” e.g. using a gelatin copy of someone's fingerprint, or hiding their face from a camera

37
New cards

Verification

The person claims an identity ("I am Ahmed"). The system compares the scan to one template โ€” the claimed person's. Fast and low false-acceptance risk.

If false acceptance prob = 1/1000 per match โ†’ overall FAR = 1/1000 = 0.1%

38
New cards

Identification

The person makes no claim. The system compares the scan to every template in the database to find a match. More comparisons = higher false-acceptance risk.

If prob = 1/1000 per match and there are 500 templates โ†’ FAR = 500 ร— 1/1000 = 50%

39
New cards

Watch Lists

subset of identification. The system only compares against a smaller list (e.g. 10 known terrorists). Fewer comparisons than full identification โ†’ intermediate false-acceptance risk.

If prob = 1/1000 per match and there are 10 templates in the watch list โ†’ FAR = 10 ร— 1/1000 = 1%

40
New cards

fcrackzip

is a Kali Linux tool that tries to crack the password of an encrypted zip file. It searches through a wordlist (a file of common passwords) trying each one. The most famous wordlist is rockyou.txt โ€” a list of over 14 million real leaked passwords.