Skip to content

deps: bump the chainreactors group across 1 directory with 4 updates#48

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/chainreactors-6eb81bc3f3
Open

deps: bump the chainreactors group across 1 directory with 4 updates#48
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/chainreactors-6eb81bc3f3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 26, 2026

Copy link
Copy Markdown

Bumps the chainreactors group with 3 updates in the / directory: github.com/chainreactors/ioa, github.com/chainreactors/neutron and github.com/chainreactors/zombie.

Updates github.com/chainreactors/ioa from 0.1.1-0.20260618070057-ec99736bed74 to 0.1.1

Release notes

Sourced from github.com/chainreactors/ioa's releases.

v0.1.1 — 认证默认开启 + 广播消息修复 + 文档重构

本版本聚焦于安全默认值、消息路由修复和文档体系重构。

安全

认证默认开启

Server 启动时默认启用 token 认证。未指定 --access-key 时自动生成并输出包含 access key 的连接 URL:

[*] ioa_server status=starting url=http://<access-key>@127.0.0.1:8765

Client 支持从 URL 中解析 access key 并自动注册:

c, _ := client.NewClient("http://<access-key>@127.0.0.1:8765", "")
c.EnsureRegistered(ctx, "my-agent", "", nil)  // 自动使用 URL 中的 access key

破坏性变更:v0.1.0 中未设置 --access-key 时认证关闭,v0.1.1 中认证始终开启。已有的无认证部署需要更新客户端配置。

消息路由

广播消息修复

修复了 GetMessagesForNodeGetInboxMessages 的路由逻辑:

  • 广播消息refs.messages = []refs.nodes = [])现在对 Space 内所有节点可见
  • 发送者自身的消息不再出现在自己的收件箱中
  • isBroadcast() 判定:refs.nodesrefs.messages 均为空的 Root Message

这修复了 Swarm 模式中 Commander 广播目标后,其他节点通过 ioa_read(无 --all)无法看到广播消息的问题。

文档

文档体系重构

删除 spec.mdprotocol-design.md,重构为结构化文档:

文件 内容
README.md / README_zh.md 核心设计理念、安装、Claude Code 使用、Swarm 协同、集成
docs/design.md / docs/design_zh.md 完整协议规格与理论基础
docs/cli.md / docs/cli_zh.md CLI 全部命令和参数
docs/extension.md / docs/extension_zh.md Skill + 子命令 L2 扩展指南

README 内联精简的设计理念(4 概念 / 3 操作 / Message Graph / L2 涌现),取代单独的设计文档入口。全部文档提供中英双语版本。

... (truncated)

Commits

Updates github.com/chainreactors/neutron from 0.0.0-20260615055126-a9bbe4fc3e95 to 0.1.0

Commits

Updates github.com/chainreactors/utils from 0.0.0-20260623065725-737b33d61c6b to 0.0.0-20260626175554-d3e25e531450

Commits

Updates github.com/chainreactors/zombie from 1.2.3-0.20260624041317-6bf4579de29d to 1.3.0

Release notes

Sourced from github.com/chainreactors/zombie's releases.

v1.3.0 — SDK 编程接口 + 代理注入 + go:embed 模板 + 并发控制

v1 系列最终版本。全面重构为 SDK 友好架构;支持 per-instance 代理注入;模板从 base64 切换到 go:embed;新增 per-host 并发限速。后续新功能(service protocol / 模板化后渗透)将在 zombie2.0 分支开发。

New Features

SDK 编程接口

  • NewRunner(opt) + RunnerOption 独立结构体,支持程序化调用
  • RunWithArgs(ctx, args, options) 复用 CLI 解析 + 信号处理
  • Help() 函数暴露帮助文本
  • SetResourceProvider() / SetResourceLoader() 资源注入覆盖
opt := &core.RunnerOption{
    Threads:     50,
    Concurrency: 4,
    Timeout:     10,
    Mod:         "clusterbomb",
    FirstOnly:   true,
}
runner := core.NewRunner(opt)
runner.SetTargets(targets)
runner.SetUsers([]string{"root", "admin"})
runner.SetPasswords([]string{"123456", "admin"})
runner.RunWithContext(ctx)

代理注入

  • ProxyDial 字段注入到 RunnerOption,per-execution 代理
  • Socket 协议(SSH/Redis/MySQL/FTP/...)和 HTTP 协议统一走注入的 DialFunc
  • 基于 utils/httpx 统一 HTTP transport 构建
opt.ProxyDial = proxyclient.NewDialFunc("socks5://127.0.0.1:1080")

go:embed 模板

  • 模板从 base64 编码切换到 go:embed + deflate 压缩的 .bin 文件
  • 源码体积减小,编译和启动速度提升
  • templates_gen.go -embed 模式自动生成 embed 声明

per-host 并发限速

  • --concurrency N(原 --host-threads)限制单 host 在飞连接数
  • 基于 channel semaphore,避免触发 sshd MaxStartups 等服务端限速
  • context 取消感知:目标命中后排队任务立即退出,不再建连

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the chainreactors group with 3 updates in the / directory: [github.com/chainreactors/ioa](https://github.com/chainreactors/ioa), [github.com/chainreactors/neutron](https://github.com/chainreactors/neutron) and [github.com/chainreactors/zombie](https://github.com/chainreactors/zombie).


Updates `github.com/chainreactors/ioa` from 0.1.1-0.20260618070057-ec99736bed74 to 0.1.1
- [Release notes](https://github.com/chainreactors/ioa/releases)
- [Commits](https://github.com/chainreactors/ioa/commits/v0.1.1)

Updates `github.com/chainreactors/neutron` from 0.0.0-20260615055126-a9bbe4fc3e95 to 0.1.0
- [Commits](https://github.com/chainreactors/neutron/commits/v0.1.0)

Updates `github.com/chainreactors/utils` from 0.0.0-20260623065725-737b33d61c6b to 0.0.0-20260626175554-d3e25e531450
- [Commits](https://github.com/chainreactors/utils/commits)

Updates `github.com/chainreactors/zombie` from 1.2.3-0.20260624041317-6bf4579de29d to 1.3.0
- [Release notes](https://github.com/chainreactors/zombie/releases)
- [Commits](https://github.com/chainreactors/zombie/commits/v1.3.0)

---
updated-dependencies:
- dependency-name: github.com/chainreactors/ioa
  dependency-version: 0.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: chainreactors
- dependency-name: github.com/chainreactors/neutron
  dependency-version: 0.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: chainreactors
- dependency-name: github.com/chainreactors/utils
  dependency-version: 0.0.0-20260626175554-d3e25e531450
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: chainreactors
- dependency-name: github.com/chainreactors/zombie
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: chainreactors
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github

dependabot Bot commented on behalf of github Jun 26, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: dependencies, go. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants