HTTP Display Filters Flashcards

1
Q

HTTP Request Method

GET, PUT, POST, CONNECT

A

http. request.method == “GET”

http. request.method == “POST”

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

Not HTTP

A

!http

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

HTTP Accept

A

http.accept

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

HTTP User Agent

A

http.user_agent contains “MSIE”

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

All the pages loading normally

A

http.response.code == 200

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

Destination URL contains

A

http.host contains “google.com”

http. host==”exact.name.here”
http. host contains “partial.name.here”

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

HTTP Error Code 1xx

A

http.response.code < 200

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

HTTP Error Code 2xx

A

http.response.code > 199 && http.response.code < 300

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

HTTP Error Code 3xx

A

http.response.code > 299 && http.response.code < 400

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

HTTP Error Code 4xx

A

http.response.code > 399 && http.response.code < 500

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

HTTP Error Code 5xx

A

http.response.code > 499

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

To display all responses that required more than 2s to complete

A

http.time > 2.0

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