Skip to content

Instantly share code, notes, and snippets.

@tspringborg
Created October 30, 2015 10:53
Show Gist options
  • Save tspringborg/02563558b7051b9daaf5 to your computer and use it in GitHub Desktop.
Save tspringborg/02563558b7051b9daaf5 to your computer and use it in GitHub Desktop.
//https://ask.wireshark.org/questions/33938/how-can-i-filter-by-website-names
http.host=="exact.name.here"
http.host contains "partial.name.here"
Both of those filters are case-sensitive.
http.host matches "(?i)web\.site\.name"
http.host matches "(?i) web[.]site[.]name"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment