7.3 Flashcards

1
Q

What registry key contains a SID sub-key for all loaded user profiles?

A

HKEY_USERS (HKU)

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

What registry key contains the most critical part of the registry; it contains specific information about the hardware, software, and preferences for all users who log into the system?

A

HKEY_LOCAL_MACHINE (HKLM)

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

Which key is used to associate file types with programs that are used to open them?

A

HKEY_CLASSES_ROOT (HKCR)

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

Which key is used to establish the current hardware configuration profile?

A

HKEY_CURRENT_CONFIG (HKCC)

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

Where are the profile environment settings stored at?

A

ntuser.dat file

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

Which HKLM Sub-Key contains boot configuration data, used with 6.* architectures?

A

HKLM\BCD0000000

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

Which HKLM Sub-Key is a volatile hive created at boot that contains hardware information provided by the firmware?

A

HKLM\HARDWARE

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

Which HKLM Sub-Key contains local account information as well as password values?

A

HKLM\SAM

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

Which HKLM Sub-Key contains cached logons and local security policy?

A

HKLM\SECURITY

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

Which HKLM Sub-Key contains a collection of sub-keys for various installed components and programs?

A

HKLM\SOFTWARE

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

Which HKLM Sub-Key contains control sets from which HKCC is derived?

A

HKLM\SYSTEM

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

What are the sub-keys of HKLM/SAM?

A
  • Account (Contains virtually everything regarding the users and groups)
  • Passwords (Stored in a hash format)
  • Built-In (Contains local group information)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are two important subkeys of HKLM\SECURITY?

A

Cache (contains logon information for the last 10 people) and Policy (contains security settings for users, groups, and other components)

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

What are some important sub-keys under HKLM\Software\Microsoft\Windows?

A
  • CurrentVersion (Defines current installation of Windows)
  • CurrentVersion\Run (List of executables that run on system startup)
  • CurrentVersion\RunOnce (Executes a program the next time a user log ons.)
  • CurrentVersion\RunServices (Programs are deleted from the key once executed)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are important sub-keys of HKLM\System?

A
  • Select
  • ControlSet001
  • ControlSet002
  • CurrentControlSet
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What sub-keys belong to the control sets?

A
  • Control
  • Enum
  • Mounted Devices
17
Q

What are major sub-keys in HKCU?

A
  • Control Panel
  • Environment
  • Session Information
18
Q

What are the two sub-keys of HKCC?

A
  • Software
  • System
19
Q

What are the most common data types in registry?

A
  • REG_BINARY
  • REG_DWORD
  • REG_SZ
  • REG_EXPAND_SZ
  • REG_MULTI_SZ
20
Q

What registry data type is raw binary data?

A

REG_BINARY

21
Q

What registry value is the most common value type consisting of 32-bit numbers expressed in deciaml oe hexadecimal?

22
Q

What registry data type is a fixed-length text string?

23
Q

What registry data type is a variable-length string allowing use of environment variables?

A

REG_EXPAND_SZ

24
Q

What registry data type cotnains lists or multiple string values?

A

REG_MULTI_SZ

25
What program do Window systems provide for querying and manipulating the Registry?
***reg.exe*** command line utility
26
Which ***reg.exe*** command adds an object or value to Registry?
**reg add**
27
Which ***reg.exe*** command displays object value?
**reg query**
28
Which ***reg.exe*** command removes an object?
**reg delete**
29
Which ***reg.exe*** command changes the path of a registry or moves it to another machine?
**reg copy**
30
What goals was Windows developed around?
* *Extensibility* * *Portability* * *Reliability* * *Security* * *Compatibility* * *Performance*
31
What ring does **kernel mode** use?
*Ring 0*
32
What ring does **user mode** use?
Ring 3
33