如何在wireshark中过滤出网站发送给主机的以.m4s结尾的文件
时间: 2023-06-20 19:09:32 浏览: 115
Wireshark过滤规则.docx
你可以使用Wireshark的过滤语法来过滤出网站发送给主机的以.m4s结尾的文件。以下是一个示例过滤器:
```
http.response and http.response.content_type contains "video/mp4" and http.response.file_data matches "\.m4s$"
```
这个过滤器包括三个条件:
- `http.response`: 过滤HTTP响应数据包。
- `http.response.content_type contains "video/mp4"`: 过滤出响应中content-type为video/mp4的数据。
- `http.response.file_data matches "\.m4s$"`: 过滤出文件名以.m4s结尾的数据。
这个过滤器将会显示所有包含以.m4s结尾的文件的HTTP响应数据包。
阅读全文