Chapter 9 Flashcards
(78 cards)
an initiative by the DHS to facilitate the open and free exchange of IOCs and other cyberthreat information between the US fed and the private sector in an automated and timely manner
Automated indicator sharing (AIS)
an observable along with a hypothesis about a threat
indicator
an identified face of occurrence, such as the presence of a malicious file
observable
which organization manages AIS?
National Cybersecurity and Communications Integration Center (NCCIC)
6 technical mechanisms implemented via architecture
layering
abstraction
data hiding
trusted recovery
process isolation
hardware segmentation
the chip that governs all major operations; can perform a limited set of logical and computational operations
CPU
handling two or more tasks simultaneously; a single core CPU is still only executing a single process at a time but is able to “juggle” multiple tasks for the user.
multitasking
the CPU contains multiple independent execution cores that can operate simultaneously and independently
Multicore
harnessing the power of more than one processor to complete the execution of a multithreaded application
Multiprocessing
when multiprocessor systems assign or dedicate a process or execution threat to a specific CPU
affinity
when multiprocessor systems assign or dedicate a process or execution threat to a specific CPU
affinity
pseudo-simultaneous execution of two tasks on a single processor; batches or serializes multiple processes. This method delays each individual task, but across all processes in the batch total time is reduced.
multiprogramming
multiple concurrent tasks are performed within a single process; often used in applications where frequent context switching between active processes causes excessive overhead
multithreading
an OS model that organizes code and components in to concentric rings, where the deeper inside you go the higher privilege level is associated with the code
protection rings
the part of an OS that always remains resident in memory so that it can run on demand at any time
kernel
which ring does the kernel reside on?
Ring 0
which ring do somewhat privileged things like I/O drivers and system utilities?
Ring 2
where do applications and peripheral devices reside?
the outermost ring
which ring runs in user mode?
Ring 3 (outermost ring)
which rings run in supervisory or privileged mode?
Rings 0-2
5 process states
ready
running
waiting
supervisory
stopped
which process state is when the process executes on the CPU?
Running or problem
which state is when a process is ready to resume or being processing?
Ready
what state is when a process is ready for continued execution but is waiting for I/O to be serviced?
waiting