backstage knowledge Flashcards

backstage IT knowledge (30 cards)

1
Q

what is a hash?

A

one-way cryptographic function that turns any input into a fixed-length output (called a digest). hashes are irreversible and unique to each data input.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is salting?

A

random data added to a password before it’s hashed. prevents rainbow attacks by making every hash unique, even for users w the same password

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what is plaintext?

A

unencrypted, readable data. opposite of ciphertext

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what is ciphertext?

A

the scrambled, unreadable output of encrypted plaintext. requires a key to decrypt back to plaintext

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what is a MAC address?

A

media access control address
- hardware id that uniquely identifies a device on a local network

looks like: A4:B2:C1:9D:34:12

  • used by switches for directing traffic on a LAN

dance metaphor: dancer’s costume tag – unique to the dancer (device)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

how does ARP work?

A

used within local networks to map IP addresses to mac addresses

  1. device says “hey! who has ip xxx.xxx.x.x?
  2. the device with that ip responds: ME! my mac address is: AA:BB:CC:DD:EE:FF.
  3. now the first device knows how to send the data directly on the local network.

***NOTE: doesn’t authenticate!!!

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what is a DNS server?

A
  • the internet’s phone book.
  • translates domain names like google.com into IP addresses
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what is a switch?

A

A device used inside a LAN to connect multiple devices together – eg laptop, printer, and desktop

  • directs traffic based on mac addresses, NOT ip
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what is a router?

A

a device that connects different networks together and routes traffic from your local network to the internet and back.

  • decides where packets go based on IP addresses
  • sits between home network and ISP
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is a recursive resolver?

A
  • a dns helper service that takes a client request “where is google.com?” and keeps asking other DNS servers (root -> TLD > authoritative) until it finds an answer.
  • usually managed by your isp or a public service like google dns or cloudflare
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is a port?

A

a door or mailbox on software where specific types of network traffic are received

80= HTTP
25 = email sending (STMP)
443 = HTTPS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what are 1.1.1.1 and 8.8.8.8?

A

they are public dns resolver ip addresses - like public internet phone books anyone can use. eg cloudflare, google, quad9

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what is the OSI model?

A

open systems interconnection model

  • conceptual framework for describing how data moves thru a network. 7 layers:
  1. physical - cables, signals
  2. data link - mac addresses, ethernet
    (ARP maps MAC addresses to IP addresses here - translates between layers 2/3)
  3. network - ip addresses, routing
  4. transport - tcp/udp
  5. session - session establishment
  6. presentation - encryption, encoding
  7. application - what you see - browsers
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what is the difference bretween a virus and worm?

A

virus: needs a host file or user interaction

worm: self-contained and self-spreading

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

what is cache?

A

Cache is a small, fast memory that stores frequently used data to make future access quicker.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the purpose of a modem?

A

A modem (MOdulator-DEModulator) converts digital data from a computer into analog signals for transmission over phone or cable lines — and vice versa.

17
Q

Where does a modem sit in a home or small office network?

A

It connects your internal network (via a router or directly to devices) to your Internet Service Provider (ISP).

18
Q

Is a modem physical or software-based?

A

It’s a physical device with embedded software/firmware.

19
Q

What layer of the OSI model does a modem operate at?

A

Mostly Layer 1 (Physical) and Layer 2 (Data Link) — it deals with transmitting raw bits over physical mediums.

20
Q

What are the 3 major types of cache?

A
  1. CPU Cache – tiny, ultra-fast memory between CPU and RAM
    1. Web Browser Cache – stores copies of web pages, images, etc., to speed up browsing
    2. DNS Cache – stores previously resolved IP addresses to avoid new DNS lookups
21
Q

Is cache hardware or software?

A

Both — CPU cache is hardware, but browser and DNS cache are software-based memory stores.

22
Q

What is the risk of cache in cybersecurity?

A

Outdated or poisoned cache can serve malicious data (e.g., DNS cache poisoning), or leak sensitive info (e.g., browser cache exposing passwords).

23
Q
  1. What happens when you type a URL?
A
  1. Check browser cache
    1. Ask recursive DNS resolver
    2. Resolver asks root → TLD → authoritative server
    3. Get IP, send TCP request
    4. TLS handshake (if HTTPS)
    5. Server sends web content
    6. Browser displays page
25
TCP
26
What is a port and why does HTTPS use 443
A port is a logical door on a device that handles specific types of traffic. • Think of your device as a hotel. The IP address is the hotel address, and the port is a room number where a service lives (e.g., room 443 = secure web traffic). • Port 443 is the default for HTTPS (encrypted web traffic using TLS).
27
What’s the difference between a router, switch, and modem?
Device Role Analogy Modem Converts ISP signal to digital Translator between languages Router Routes traffic between networks Mailroom that knows ZIP codes Switch Connects local devices together Internal office mail sorter You need all three for full internet access in a home or office.
28
How does DNS resolve a domain
DNS (Domain Name System) translates human-readable domain names into IP addresses. Resolver’s job: • Your device asks: “What is the IP for bubble.io?” • If not cached, the recursive resolver queries: 1. Root server → “Ask .io server” 2. .io TLD server → “Ask bubble.io authoritative server” 3. Authoritative DNS → “Here’s the IP: 198.51.100.25” • Your device connects to that IP.
29
How does DNS resolve a domain?
DNS (Domain Name System) translates human-readable domain names into IP addresses. Resolver’s job: • Your device asks: “What is the IP for bubble.io?” • If not cached, the recursive resolver queries: 1. Root server → “Ask .io server” 2. .io TLD server → “Ask bubble.io authoritative server” 3. Authoritative DNS → “Here’s the IP: 198.51.100.25” • Your device connects to that IP.
30
Protocol TCP UDP Full Name Transmission Control Protocol User Datagram Protocol Connection? Yes (handshake + guaranteed delivery) No (fire and forget) Reliable? Yes No Speed? Slower Faster Used for Web browsing, email Video calls, games, live streams