Skip to content

Commit 6e1cd97

Browse files
committed
chore: fix broken url
1 parent 925b7d2 commit 6e1cd97

24 files changed

Lines changed: 202 additions & 141 deletions

docs/IoM/concept.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ IoM的拓展能力是其核心中的核心,支持在多个维度进行功能
566566
| | Features编译 | 编译时功能选择 | [Implant构建指南](/IoM/manual/implant/build/) |
567567
| | Addon管理 | 二进制内存缓存 | [Implant开发指南](/IoM/guideline/develop/implant/) |
568568
| | 执行引擎 | 多种加载方式 | [Implant使用手册](/IoM/manual/implant/) |
569-
| | Kit工具包 | OPSEC对抗工具 | [高级用法文档](/IoM/guideline/advance/) |
569+
| | Kit工具包 | OPSEC对抗工具 | [高级用法文档](/IoM/guideline/advance/Guardrail/) |
570570
| | Loader扩展 | 自定义加载器 | [Implant开发指南](/IoM/guideline/develop/implant/) |
571571
| **🔄 生态兼容** | BOF兼容 | CobaltStrike BOF支持 | [内置插件文档](/IoM/guideline/embed_mal/) |
572572
| | Assembly兼容 | CLR程序执行 | [Implant使用手册](/IoM/manual/implant/) |

docs/IoM/design.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ message Spite {
197197

198198
要解决这个问题, 只需要把流量相关的功能都拎出来, 与 implant 彻底解耦, implant 端保留了最基本的 tcp 与 tls 信道, 更多的拓展功能将通过`Read``Write`接口从第三方工具中获取. 正巧, 原本的工具链中就有一个全能的流量代理工具, 现在它又多了一个用途, 当作 implant 的前置 stage.
199199

200-
IoM 的代理与流量隧道的高级功能均通过[rem](/rem/index)实现.
200+
IoM 的代理与流量隧道的高级功能均通过[rem](/rem/)实现.
201201

202202
我们将 rem 打包成 dll, 并暴露出 Read 与 Write 接口. 这样上线的不只是 implant, 还能直接打通 implant 端的网络
203203

@@ -296,4 +296,3 @@ Mal插件生态将提供
296296

297297
并通过mals仓库索引社区中的插件仓库.
298298

299-

docs/IoM/guideline/deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ IoM还支持了第三方消息通知,目前支持了telegram,钉钉,飞书
118118
channel: # 推送渠道,可选: wechat, email, telegram 等
119119
```
120120

121-
关于listener和编译的配置在[listener](IoM/guideline/listener.md)和[payload](payload.md)中说明。
121+
关于listener和编译的配置在[listener](listener.md)和[payload](payload.md)中说明。
122122
## 启动客户端
123123

124124
服务端启动后会生成两个配置文件, 分别为`listener.auth` 和`admin_[server_ip].auth`,将生成的用户配置文件, 默认为 `admin_[server_ip].auth` 复制到 `Malice-Network` 客户端的所在位置。使用新的用户配置文件时,可以使用以下指令启动客户端:
@@ -179,4 +179,4 @@ bash install.sh
179179

180180

181181

182-
!!! tips "更具体的部署文档在[deploy](/IoM/manual/manual/deploy)中说明"
182+
!!! tips "更具体的部署文档在[deploy](/IoM/manual/manual/deploy)中说明"

docs/IoM/guideline/develop/client.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: IoM Client 开发指南
77
本指南介绍如何为IoM的Client组件进行开发和贡献。Client是用户与IoM系统交互的主要界面。
88

99
!!! info "回到总览"
10-
返回[开发者贡献指南](index.md) | 查看[Server开发指南](server.md) | 查看[Implant开发指南](IoM/guideline/develop/implant.md)
10+
返回[开发者贡献指南](index.md) | 查看[Server开发指南](server.md) | 查看[Implant开发指南](implant.md)
1111

1212
## 环境配置
1313

@@ -344,7 +344,7 @@ IoM兼容sliver的Armory生态,支持:
344344
- [IoM设计文档](/IoM/design/) - 了解整体架构
345345
- [Mal插件文档](/IoM/manual/mal/) - 插件开发详细指南
346346
- [Server开发指南](server.md) - 服务端开发
347-
- [Implant开发指南](IoM/guideline/develop/implant.md) - 植入物开发
347+
- [Implant开发指南](implant.md) - 植入物开发
348348
- [Armory生态](https://github.com/sliverarmory/armory) - Sliver插件生态
349349

350350
---

docs/IoM/guideline/develop/implant.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: IoM Implant 开发指南
77
本指南介绍如何为IoM的Implant组件进行开发和贡献。Implant是基于Rust的跨平台植入物。
88

99
!!! info "回到总览"
10-
返回[开发者贡献指南](index.md) | 查看[Server开发指南](server.md) | 查看[Client开发指南](IoM/guideline/develop/client.md)
10+
返回[开发者贡献指南](index.md) | 查看[Server开发指南](server.md) | 查看[Client开发指南](client.md)
1111

1212
## 环境配置
1313

@@ -368,9 +368,9 @@ cargo build -r --features "example,your_module"
368368

369369
- [Implant构建文档](/IoM/manual/implant/build/) - 详细编译指南
370370
- [Module文档](/IoM/manual/implant/modules/) - 所有可用模块
371-
- [Mutant文档](/IoM/manual/implant/mutant/) - 配置工具详解
371+
- [Mutant文档](/IoM/manual/mutant/malefic_mutant/) - 配置工具详解
372372
- [Server开发指南](server.md) - 服务端开发
373-
- [Client开发指南](IoM/guideline/develop/client.md) - 客户端开发
373+
- [Client开发指南](client.md) - 客户端开发
374374

375375
---
376376

docs/IoM/guideline/develop/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: IoM 开发者贡献指南
77
欢迎贡献 Internet of Malice (IoM) 项目!IoM 致力于成为开放的红队基础设施,我们欢迎来自社区的贡献。
88

99
!!! important "合规提醒"
10-
在开始贡献之前,请仔细阅读并理解我们的[用户协议](/IoM/index/#用户协议)。所有贡献都必须遵循法律法规,仅用于授权的安全测试和研究。
10+
在开始贡献之前,请仔细阅读并理解我们的[用户协议](/IoM/#用户协议)。所有贡献都必须遵循法律法规,仅用于授权的安全测试和研究。
1111

1212
## 可拓展的组件
1313

docs/IoM/guideline/develop/server.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: IoM Server 开发指南
77
本指南介绍如何为IoM的Server组件进行开发和贡献。Server是IoM的核心数据处理和交互服务。
88

99
!!! info "回到总览"
10-
返回[开发者贡献指南](index.md) | 查看[Client开发指南](IoM/guideline/develop/client.md) | 查看[Implant开发指南](IoM/guideline/develop/implant.md)
10+
返回[开发者贡献指南](index.md) | 查看[Client开发指南](client.md) | 查看[Implant开发指南](implant.md)
1111

1212
## 环境配置
1313

@@ -259,8 +259,8 @@ Listener与Server是解耦的,可以独立部署。开发新的Listener类型
259259

260260
- [IoM设计文档](/IoM/design/) - 了解整体架构
261261
- [Proto仓库](https://github.com/chainreactors/proto) - 协议定义
262-
- [Client开发指南](IoM/guideline/develop/client.md) - 客户端开发
263-
- [Implant开发指南](IoM/guideline/develop/implant.md) - 植入物开发
262+
- [Client开发指南](client.md) - 客户端开发
263+
- [Implant开发指南](implant.md) - 植入物开发
264264

265265
---
266266

docs/IoM/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ project-IoM/
9090
- [v0.0.4 Bootstrapping](/blog/2025/01/02/IoM_v0.0.4/)
9191
- [v0.1.0 代替CobaltStrike的最后四块碎片](/blog/2025/04/14/IoM_v0.1.0/)
9292
- [v0.1.1 Out of the Box 开箱即用](/blog/2025/07/09/IoM_v0.1.1/)
93-
- [v0.1.2 Integrate Everything](/2025/11/10/IoM_v0.1.2/)
93+
- [v0.1.2 Integrate Everything](/blog/2025/11/10/IoM_v0.1.2/)
9494

9595
**Advanced Posts:**
9696

docs/IoM/manual/implant/build.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,7 @@ proxy:
738738
- `ALL_PROXY` - 所有协议通用代理
739739
- `NO_PROXY` - 不使用代理的地址列表
740740

741+
<span id="sleep配置"></span>
741742
#### 4.2.2 时序控制配置
742743

743744
```yaml
@@ -1168,6 +1169,7 @@ build:
11681169
require_uac: false # 需要 UAC 提权
11691170
```
11701171

1172+
<span id="pulse配置"></span>
11711173
### 4.5 pulse配置
11721174

11731175
Pulse 是 IoM 的轻量级 Stager,负责从服务器下载并执行主要的 Beacon 载荷。
@@ -1194,6 +1196,7 @@ pulse:
11941196
User-Agent: "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0"
11951197
```
11961198
1199+
<span id="autorun"></span>
11971200
### 4.6 autorun配置
11981201
11991202
autorun本质上是将protobuf 转为yaml, 在编译时会重新还原为protobuf并加密保存到二进制文件中。
@@ -1217,4 +1220,4 @@ yaml示例:
12171220
- add
12181221
- ....
12191222

1220-
```
1223+
```

docs/IoM/manual/integrate/ai.docx

13.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)