Domain 3: Security Engineering; Virtualization and Distributed Computing Flashcards

1
Q

What is virtualization?

A

Virtualization adds a software layer between the operating system and the underlying computer hardware. This allows multiple guest operating systems to run on a physical host computer. Popular products include VMware, QEMU, Xen.

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

What is transparent virtualization?

A

Transparent virtualization runs stock operating systems, such as Windows 10 or Ubuntu Linux 15.04, as virtual guests. No changes to the guest OS are required.

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

What is paravirtualization?

A

Paravirtualization runs specially modified operating systems, with modified kernel system calls. Paravirtualization can be more efficient, but requires changing the guest OS which may not be possible for closed OSes such as the Microsoft Windows family.

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

The key to virtualization security is the hypervisor, which does what?

A

Controls access between the virtual guests and the host hardware.

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

What is the difference between a Type 1 and Type 2 hypervisor?

A

A Type 1 hypervisor (also called bare metal) is part of an operating system that runs directly on host hardware. A Type 2 hypervisor runs as an application on a normal operating system, such as Windows 10. VMware ESX is a Type 1 hypervisor, and VMware Workstation is Type 2.

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

What is VMEscape?

A

Where an attacker exploits the host OS or guest from another guest.

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

What is cloud computing?

A

Public cloud computing outsources IT infrastructure, storage, or applications to a 3rd party provider. A cloud also implies geographic diversity of computer resources. The goal of cloud computing is to allow large providers to leverage their economies of scale to provide computing resources to other companies that typically pay for these services based on their usage.

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

What are the three commonly available levels of service provided by cloud providers?

A

Infrastructure as a Service
Platform as a Service
Software as a Service

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

What is a private cloud?

A

Private clouds house data for a single organization, and may be operated by a 3rd party, or by the organization itself.

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

What is a government cloud?

A

Government clouds are designed to keep data and resources geographically contained within the borders of one crountry, designed for the government of the respective country.

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

What are the benefits of cloud computing?

A

Reduced upfront capital expenditure, reduced maintenance costs, robust levels of service, and overall operational cost-savings.

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

What are the concerns of cloud computing?

A

One concern is the compromise of one cloud customer could lead to the compromise of other customers.

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

What is the risk of using a pre-configured image?

A

Any vulnerability associated with the pre-configured image can introduce risk to every organization that uses the image.

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

What are some rights an organization should negotiate before signing a contract with a cloud computing provider?

A

The right to audit, the right to conduct a vulnerability assessment, and the right to conduct a penetration test (both electronic and physical) of data and systems placed in the cloud.

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

When data needs to comply with US-based laws, should a public cloud be used?

A

Data in public clouds could be moved to another country. US-based laws such as HIPAA or GLBA have no effect outside the US. Private or Government clouds should be used in these cases.

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

What is Grid Computing?

A

Unlike using large clusters of similar systems or a single supercomputer, grid computing makes use of spare CPU cycles of a network of dissimilar devices.

17
Q

What is Large-Scale Parallel Data Systems?

A

The primary purpose is to allow for increased performance through economies of scale. Often parallel systems will leverage some degree of shared memory which, if not managed appropriately, can expose potential race conditions that introduce integrity challenges.

18
Q

What is Peer to Peer network?

A

In a P2P network, any computer can act as the server or client. P2P networks were designed to be neutral with regards to intellectual property rights. P2P networks are frequently used to download commercial music and movies, often in violation to the owner’s intellectual property rights. Decentralized P2P networks are resilient since there are no central servers that can be taken offline. Integrity is a key concern. With no central repository of data, what assurance do users have of receiving legitimate data? Cryptographic hashes are a critical control, and should be used to verify the integrity of data downloaded from a P2P network.

19
Q

What is a Thin Client?

A

Thin clients are simpler than normal computer systems with harddrives, full operating systems, and locally installed applications. They rely on central servers, which server applications and store the associated data.

20
Q

What is a diskless workstation?

A

A diskless workstation contains memory, cpu, and firmware, but no harddrive. The kernel and operating system are typicall loaded via the network.

21
Q

What is the boot order of a diskless workstation?

A

BIOS>POST>TCP/IP>BOOTP or DHCP.

22
Q

What are thin client applications?

A

Thin client applications normally run on a system with a full operating system, but use a Web browser as a universal client. Network traffic typicall uses HTTP (TCP port 80) and HTTPS (TCP port 443).

23
Q

What are The Internet of Things (IoT)?

A

The Internet of Things refers to small internet connected devices such as baby monitors, thermostats, light bulbs, cash registers, appliances, smart meters, cars, etc. Many of these devices are directly accessible via the internet.

24
Q

What are the security risks associated with IoT?

A

Default credentials are common, enterprise management tools are usually lacking, patching can be difficult (if not impossible). Vendors often release patches slowly and commonly end support of devices that are still in widespread use.