Skip to content

Commit 344d1f2

Browse files
authored
Create readme.md
1 parent b3d191e commit 344d1f2

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

third-party/readme.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# 插件提交方式
2+
3+
4+
1. git clone https://github.com/CrossC2/CrossC2Kit.git
5+
2. cd CrossC2Kit && mkdir third-party
6+
3. 将插件置入该目录后进行 pull request
7+
4. pull request 项目将在自动编译通过后进行合并
8+
9+
10+
```c
11+
├── third-party
12+
│   ├── test.cna
13+
│   └── util
14+
│ ├── lpe // 插件分类
15+
│ │ ├── cve-2021-1102 // 插件名称
16+
│ │ │ ├── load.cna // 插件启动入口 *
17+
│ │ │ ├── readme.md // 插件文档
18+
│ │ │ ├── src // 插件包含的二进制组件源码目录
19+
│ │ │ │ ├── exp.c // 待编译的源码 *
20+
│ │ │ │ └── makefile // 自动编译的工程配置文件 *
21+
│ │ │ └── testa.cna // 插件内部用到的cna脚本
22+
│ │ └── cve-2022-2202
23+
│   │   ├── load.cna
24+
│   │   ├── readme.md
25+
│   │   └── src
26+
│   │   ├── exp.c
27+
│   │   └── makefile
28+
│   └── pass
29+
│   ├── linux-login
30+
│   │   ├── load.cna
31+
│   │   └── src
32+
│   │   ├── exp.c
33+
│   │   └── makefile
34+
│   └── readme.md
35+
```
36+
37+
5. 编译结果将在 **summary** 中显示,包含`系统架构信息``编译过程``编译结果符号信息``Linux包含GLIBC版本信息``编译整体结果`

0 commit comments

Comments
 (0)