参考: https://blog.csdn.net/aflyeaglenku/article/details/50884296
表达式为:ip.addr == 192.168.0.1,本表达式的等价表达式为
ip.src == 192.168.0.1or ip.dst == 192.168.0.1
-
要排除以上的数据包,我们只需要将其用括号囊括,然后使用 "!" 即可
!(ip.addr == 192.168.0.1)
参考: https://blog.csdn.net/aflyeaglenku/article/details/50884296
表达式为:ip.addr == 192.168.0.1,本表达式的等价表达式为
ip.src == 192.168.0.1or ip.dst == 192.168.0.1
-
要排除以上的数据包,我们只需要将其用括号囊括,然后使用 "!" 即可
!(ip.addr == 192.168.0.1)
要解密HTTPS流量,需要得到加密密钥,加密密钥由主密钥、客户端随机数、服务器随机数生成。由上述握手过程可知,客户端随机数和服务器随机数在双方握手消息中传递,而主密钥(master_secret)则由预主密钥(pre_master_secret)结合两个随机数生成。预主密钥通过密码套件中的密钥交换算法进行交换(DH、RSA)。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| http——Packet Counter http总的统计http.request.method == "GET" http GET请求http.response==1 http所有的响应包http.response==1 && http.response.code==200 响应请求成功的包http.response==1 && http.response.code==201 201 created 提示知道新文件的URL,成功请求并创建了新的资源http.response==1 && http.response.code==304 客户端已经缓存,不带响应体http.response==1 && http.response.code==302 客户端继续使用原有URIhttp.request==1 //过滤所有的http请求,貌似也可以使用http.requeshttp.request.method == "GET"http.request.method == "POST"http.request.uri == "/img/logo-edu.gif" [popexizhi:这个对指定地址访问的url过了非常有用的,make]http contains "GET"http contains "HTTP/1."// GET包http.request.method == "GET" && http contains "Host: "http.request.method == "GET" && http contains "User-Agent: "// POST包http.request.method == "POST" && http contains "Host: "http.request.method == "POST" && http contains "User-Agent: "// 响应包http contains "HTTP/1.1 200 OK" && http contains "Content-Type: "http contains "HTTP/1.0 200 OK" && http contains "Content-Type: "一定包含如下Content-Type:http.host==magentonotes.com 或者http.host contains magentonotes.com //过滤经过指定域名的http数据包,这里的host值不一定是请求中的域名http.request.method==POST过滤所有请求方式为POST的http请求包,注意POST为大写http.cookie contains guid //过滤含有指定cookie的http数据包http.request.full_uri==” http://task.browser.360.cn/online/setpoint” //过滤含域名的整个url则需要使用http.request.full_urihttp.content_type == “text/html” //过滤content_type是text/html的http响应、post包,即根据文件类型过滤http数据包http.server //过滤所有含有http头中含有server字段的数据包http.request.version == "HTTP/1.1" //过滤HTTP/1.1版本的http包,包括请求和响应 |