Unit 3 - quiz Flashcards

1
Q

Which Windows registry hive stores information about object linking and embedding (OLE) registrations?

A

HKEY_CLASSES_ROOT - HKCR

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

Which Windows registry hive stores information about the current hardware profile?

A

HKEY_CURRENT_CONFIG - HKCC

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

Which Windows registry hive stores information concerning all the user accounts on the host?

A

HKEY_USERS - HKU

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

Which Windows registry hive stores information concerning the currently logged in user?

A

HKEY_CURRENT_USERS - HKCU

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

Which Windows registry hive stores system-related information?

A

HKEY_LOCAL_MACHINE - HKLM

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

Which Windows tool selectively denies traffic to a computer or network segment?

A

Windows Defender Firewall

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

Which Windows tool logs history, application, security, and system events?

A

Event Viewer

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

Which windows tool or command can be used to look for inbound or outbound TCP connections on a Windows host that are not authorized?

A

netstat

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

Which Windows tool provides resource information, such as memory, CPU, disk, and network?

A

Resource Monitor

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

Which Windows tool is the built-in virus and spyware protection?

A

Windows Defender

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

Which command or tool finds the IP address of a server from a URL?

A

Nslookup

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

Which Windows tool provides information about applications, processes, and services running on the computer?

A

Task Manager

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

Which Windows tool is the database that stores all the information about hardware, applications, users, and system settings?

A

Windows Registry

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

What is a thread?

A

A thread is a unit of execution in a process.

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

What is a windows registry?

A

The Windows Registry is a hierarchical database that stores most of the operating systems and desktop
environment configuration settings

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

How do you access the windows registry?

A

To access the Windows Registry, click Start > Search for regedit and select Registry Editor. Click Yes
when asked to allow this app to make changes.

17
Q

How are PowerShell Commands, cmdlets constructed?

A

PowerShell commands, cmdlets, are constructed in the form of verb-noun string. To identify the
PowerShell command to list the subdirectories and files in a directory, enter Get-Alias dir at the
PowerShell prompt.
PS C:\Users\CyberOpsUser> Get-Alias dir

18
Q

What PowerShell would you enter to see the options available for the netstat command?

A

enter netstat -h to see the options available for the netstat command

19
Q

What PowerShell would you enter to see per-protocol statistics?

A

Displays per-protocol statistics. By default, statistics are
shown for IP, IPv6, ICMP, ICMPv6, TCP, TCPv6, UDP, and UDPv6;
the -p option may be used to specify a subset of the default.

20
Q

What command would you use to display the routing table with the active routes?

A

To display the routing table with the active routes, enter netstat -r at the prompt.

21
Q

What is the netstat command can also display the processes associated with the active TCP connections.

A

The netstat command can also display the processes associated with the active TCP connections. Enter
the netstat -abno at the prompt.