Fundamentals of Cyber security Operations - Week 3 Flashcards

1
Q

What is an Wireshark ?

A

Wireshark is a software protocol analyzer, or “packet sniffer” application, used for network troubleshooting, analysis, software and protocol development, and education

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

What is the keyboard shortcut to start Capture in WireShark ?

A

ctrl + e

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

What is captured by Wireshark ?

A

PDU - Protocol Data Unit

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

Where to view the source and destination MAC address in Wiresark ?

A

Select the captured PDU, Click the arrow to the left of the Ethernet II row to view the Destination and Source MAC addresses.

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

What do you mean by remote host ?

A

Remote host means, host is on another network,

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

When you ping a host on a different Network , then what is the destination MAC address ?

A

Destination MAC address is the Mac address of default gateway.
Layer 2 frames never leave the LAN. When a ping is issued to a remote host, the source will use the Default Gateway’s MAC address for the frame destination. The Default Gateway receives the packet, strips the Layer 2 frame information from the packet and then creates a new frame header with the next hop’s MAC address. This process continues from router to router until the packet reaches its destination IP address.

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

What is OUI ?

A

Organizationally Unique Identifier}
The part of the MAC address that identifies the vendor of the network adapter. The OUI is the first three bytes of the six-byte field and is administered by the IEEE. See MAC layer.

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

How many bits are in OUI ?

A

24 bits

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

How many bits are one octate of MAC Address

A

8 bits

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

How many bits are in MAC Address ?

A

48 bits
It has six octets of 8 bit each & expreseed as hexadeximal digits 0-9,A-F

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

How many octates are reserved for OUI ?

A

First three octates from Left to Right
10:dd:b1:xx:xx:xx

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

What is the frame type of IPv4 address ?

A

0x0800

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

What is the frame type of ARP ?

A

0x0806

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

What are the five basic parts of a Ethernet Frame?

A
  1. Destination
    2.Source
  2. Type
  3. Data
  4. FCS (Frame Check Sequence received 10 51051 we iPhone 50 after inter blue)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How to capture 50 packets from eth0 interface and save it to pcap file ?

A

tcpdump -i eth0 -v -w capture.pcap

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

What are the classification of Network ports ?

A

The port numbers are divided into three ranges:

  1. Well-known ports
    The well known ports are those from 0 - 1,023. DCCP well known ports should not be used without IANA registration. The registration procedure is defined in document RFC4340, section 19.9.
  2. Registered ports
    The registered ports are those from 1,024 - 49,151. DCCP registered ports should not be used without IANA registration. The registration procedure is defined in document RFC4340, section 19.9.
  3. Dynamic and/or private ports
    The dynamic and/or private ports are those from 49,152 - 65,535.
17
Q

Most Vulnerable Ports ?

A

FTP (20, 21)
SSH (22)
Telnet (23)
SMTP (25)
DNS (53)
NetBIOS over TCP (137, 139)
SMB (445)
HTTP and HTTPS (80, 443, 8080, 8443)
Ports 1433, 1434 and 3306
Remote desktop (3389)

18
Q

How to captutre 50 packets of network card from terminal & save irt in pcap file ?

A

tcpdump -i eth0 -v -c 50 -w /home/analyst/capture.pcap