How to find all the HTTP requests that don't have "User-Agent" field. I tried the following two filters but neither worked:
Any ideas? asked 26 Aug ‘15, 16:16 pktUser1001 |
One Answer:
http.request.method && !http.user_agent answered 26 Aug '15, 17:02 Jim Aragon |
Thanks @jim-aragon. It works.
http.request && !http.user_agent
works too.