Windows Security Policy Flashcards
(45 cards)
foundational principles that guide the design, implementation, and management of security measures to protect information systems and data
security concepts
1) Ensures sensitive information is accessible only to authorized individuals
2) Ensures data remains accurate, consistent, and unaltered
3) Ensures systems and data are accessible when needed by authorized users
confidentiality;
integrity;
availability
A layered security approach that employs multiple security measures to protect information and resources within the organization
defense in depth
Prioritizing and integrating security measures into the development and design of systems and software
security by design
Ensures that the default software configuration settings are the most secure settings possible
security by default
An integrated antivirus and anti-malware solution that provides real-time protection against threats such as viruses, spyware, and other malicious software;
enhanced threat detection & response
Windows Defender
A network security system that monitors and controls incoming and outgoing network traffic based on predetermined security rules;
Inbound and outbound rules to control network traffic
Windows Firewall
a centralized database used to store configuration settings for the OS, hardware, software, and user preferences;
Organized in a hierarchical structure where each top-level node is called a _____
Registry hive; hive
Fundamental components that act as containers for subkeys and values that store configuration settings;
help store settings for the operating system, applications, and hardware
registry keys
Similar to folders in a file system, they can contain subkeys and values;
subkeys are nested within other keys
values are data entries stored within keys, each having name, type, & data
Hives/keys
MASTER KEY (1/2);
registry key that contains configuration information for the local machine, including hardware, software, and system settings
HKEY_LOCAL_MACHINE (HKLM)
MASTER KEY (1/2);
Stores user-specific settings for all users’ profiles on the system;
each user profile is represented by a subkey named after the user’s Security Identifier (SID)
HKEY_USERS (HKU)
Stores settings and preferences for the currently logged-in user, such as desktop settings and user-specific software configurations;
derived key (1/3)
HKEY_CURRENT_USER (HKCU)
Holds information about file associations and registered COM Objects; merges information from HKLM\Software\Classes and HKCU\Software\Classes;
derived key (1/3)
HKEY_CLASSES_ROOT (HKCR)
Contains hardware configuration information used at system startup. It points to the current hardware profile settings in HKLM\SYSTEM\CurrentControlSet\
derived key (1/3)
HKEY_CURRENT_CONFIG (HKCC)
**the actual data entries within Registry keys that store configuration settings and other necessary information for the operating system and applications;
each contains all 3 components of Name, Type, & Data
Registry values
**A fixed-length text string
String Value (REG_SZ)
**used for configuration settings and flags;
32-bits
DWORD Value (REG_DWORD)
**hardware component information;
binary data
Binary Value (REG_BINARY)
**A variable-length string that can contain environment variables that are expanded when the value is retrieved
Expandable String Value (REG_EXPAND_SZ)
**used for more extensive data storage;
64 bit
QWORD Value (REG_QWORD)
**A sequence of null-terminated strings, used for lists of items
Multi-String Value (REG_MULTI_SZ)
**utilities and applications designed to access, view, edit, and manage the Windows Registry;
help users configure system settings, manage policies, and troubleshoot issues
Windows Registry tools
**command-line utility that allows users to interact with the Windows Registry by querying, adding, modifying, and deleting registry keys and values;
enables exporting, importing, adding, deleting, and modifying registry keys and values through the command prompt
Command-Line Tools (reg.exe)
reg query- Retrieve registry data from specified keys or values
reg add- Add a new registry key or value
reg delete
reg export or import