06 Flashcards

1
Q

___ is a robust file manipulation application used for exchanging and manipulating files over a
TCP-based computer network.

A

ftp

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

How Do I tell if ftp is active or passive?

A

PORT == Active
PASV = Passive

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

What command will show me all ftp sessions?

A

tcp.port == 20 || tcp.port == 21

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

What command wil show me all FTP and FTP data connections exculsively?

A

ftp || ftp-data

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

What ftp command will show me all FTP file transfer requests?

A

ftp.request.command in {STOR RETR}

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

What ftp command will show me Whether a ftp connection is passive or active

A

ftp.request.command in {PORT PASSV}

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

What ftp command will show me all Usernames/passwords

A

ftp.request.command in {USER PASS}

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

What is the size of blocks in tftp?

A

512

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

_________ is an application-layer protocol to transfer files, like FTP,
but in a simpler format. TFTP uses UDP for file transfers over port ____,

A

TFTP 69

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

What tftp opcode gives me read requests

A

1

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

What tftp opcode gives me write requests?

A

2

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

What tftp opcode gives me Data?

A

3

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

What tftp opcode gives me Acknowledgement

A

4

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

What tftp opcode gives me Errors

A

5

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

What tftp command gives me all application layer tftp packets?

A

tftp

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

What tftp command shows all read requests?

A

tftp.opcode == 1

17
Q

What tftp command shows all write requests?

A

tftp.opcode == 2

18
Q

What tftp command shows all data packets?

A

tftp.opcode == 3