HTTP Display Filters Flashcards
HTTP Request Method
GET, PUT, POST, CONNECT
http. request.method == “GET”
http. request.method == “POST”
Not HTTP
!http
HTTP Accept
http.accept
HTTP User Agent
http.user_agent contains “MSIE”
All the pages loading normally
http.response.code == 200
Destination URL contains
http.host contains “google.com”
http. host==”exact.name.here”
http. host contains “partial.name.here”
HTTP Error Code 1xx
http.response.code < 200
HTTP Error Code 2xx
http.response.code > 199 && http.response.code < 300
HTTP Error Code 3xx
http.response.code > 299 && http.response.code < 400
HTTP Error Code 4xx
http.response.code > 399 && http.response.code < 500
HTTP Error Code 5xx
http.response.code > 499
To display all responses that required more than 2s to complete
http.time > 2.0