分类 云笔记 下的文章

“收集其他网站上看到的点滴内容。”

wireshark 显示语法

data.len==16 and data.data[0-3]==c0:a8:06:fb

wireshark 根据数据内容显示过滤示例效果图:
wireshark-display-data-data.png

查找 wireshark data.data filter

可以在官网上看到关于data display 的 filter
https://www.wireshark.org/docs/dfref/d/data.html

对于太长的数据,可以使用 data.md5_hash 来判断是否是指定内容的数据。不过一般来说,长度和指定数据部分内容就能够区分了。

tcp.stream eq 0 and frame contains "\x7e\xff"

查找tcp包里面是否包含某个字符串,使用frame contains 就可以了.

Certificate error while pushing no… | Apple Developer Forums
We did a temporary fix by setting lower SSL security level.

In particular, the openSSL configuration file /etc/ssl/openssl.cnf shall be modified in the following way.
At the beginning, add openssl_conf = default_conf
At the end, add
Code Block 
[ default_conf ]
ssl_conf = ssl_sect
[ssl_sect]
system_default = ssl_default_sect
[ssl_default_sect]
MinProtocol = TLSv1.2
CipherString = DEFAULT:@SECLEVEL=0

After this modification, the certificate is recognized without security errors.

Referenced from: itectec.com/ubuntu/ubuntu-certificate-error-after-upgrade-to-20-04