Skip to content

deps: bump the chainreactors group across 1 directory with 5 updates#49

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

deps: bump the chainreactors group across 1 directory with 5 updates#49
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/chainreactors-9308cddada

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the chainreactors group with 4 updates in the / directory: github.com/chainreactors/ioa, github.com/chainreactors/neutron, github.com/chainreactors/spray 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/spray from 1.3.2-0.20260624034433-890630649b2b to 1.3.2

Release notes

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

v1.3.2

Changelog

Bug Fixes

  • [fix] 修复 -q/--quiet 未完全静默的问题:在配合 --no-bar --no-stat 使用时,不再继续向控制台打印 [check][common] 等结果输出,文件输出不受影响
  • [fix] 修复 --crawl 未遵守 --max-length 的问题:默认按配置限制读取响应体,避免爬取大页面时额外放大内存占用;如需完整读取可显式使用 --read-all
  • [fix] 修复 Init 失败后仍继续运行爆破池的问题,避免初始化异常时继续发起无效请求

Dependencies & CI

  • [deps] 升级 logs 依赖,获取 concurrent writer 修复
  • [chore] 新增 issue bug report 模板,便于收集复现信息

Notes

  • 本版本主要面向稳定性、内存控制和静默输出行为修复

Full Changelog: chainreactors/spray@v1.3.1...v1.3.2

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 @github

dependabot Bot commented on behalf of github Jun 28, 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.

Bumps the chainreactors group with 4 updates in the / directory: [github.com/chainreactors/ioa](https://github.com/chainreactors/ioa), [github.com/chainreactors/neutron](https://github.com/chainreactors/neutron), [github.com/chainreactors/spray](https://github.com/chainreactors/spray) 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/spray` from 1.3.2-0.20260624034433-890630649b2b to 1.3.2
- [Release notes](https://github.com/chainreactors/spray/releases)
- [Commits](https://github.com/chainreactors/spray/commits/v1.3.2)

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/spray
  dependency-version: 1.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/go_modules/chainreactors-9308cddada branch from d2af7b2 to ef38e59 Compare June 28, 2026 20:04
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