首页 | 归档 | 分类 | 标签 | 关于 |
|
如何用 wireshark 抓包 TLS 封包
https://segmentfault.com/a/1190000018746027
PCAP 报文中图片视频的自动化还原方法
村中少年
https://gitbook.cn/books/5b1ce272ee7ef56301f735bf/index.html
X.509数字证书的结构与解析
https://blog.csdn.net/xy010902100449/article/details/52145009
使用Python Openssl库解析X509证书信息
https://blog.csdn.net/qq874455953/article/details/85041415
https://blog.csdn.net/xuq09/article/details/87707583
TCP数据包最大负载: https://segmentfault.com/a/1190000012962389
TCP、UDP数据包大小的限制:https://blog.csdn.net/caoshangpa/article/details/51530685
idea打包的jar运行报 xxx没有主清单属性:https://blog.csdn.net/banjing_1993/article/details/83073210
https://blog.csdn.net/inthat/article/details/114444631
linux下使用 maven自动构建项目:https://blog.csdn.net/sxs_smile/article/details/71024355
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
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!--类似于java的包名,通常时公司或者组织的名称-->
<groupId>groupId</groupId>
<!--类似于java的类名,通常是项目名称-->
<artifactId>LearnJava</artifactId>
<!--版本号 SNAPSHOT表示非release-->
<version>1.0-SNAPSHOT</version>
<!--依赖,其中的groupId、artifactId、version和包名的定义一致-->
<dependencies>
<dependency>
<groupId>com.tencent.tccm</groupId>
<artifactId>tccm-client-java</artifactId>
<!-- 这里引用的是snapshot版本的jar包,生产环境要引用release版本-->
<version>1.0-SNAPSHOT</version>
<!--表示该jar包在那个阶段使用-->
<scope>test</scope>
</dependency>
</dependencies>
</project>