SEL 部署 – 加密链式部署时间线

1作者: chokriabouzid3 个月前原帖
我们在事后分析中浪费了几个小时来重建“何时部署了什么”。 SEL Deploy 创建了一个防篡改的部署时间线: - 每次部署:命令哈希、git 提交、时间戳、退出代码 - 与之前的部署链条相连(篡改会破坏链条) - 使用 Ed25519 签名(不可否认) - 本地 SQLite 用于快速查询时间线 试试吧: ``` git clone https://github.com/chokriabouzid-star/sel-deploy cd sel-deploy cargo build --release ./target/release/sel-deploy keygen ./target/release/sel-deploy run -- echo "hello world" ``` 基于 SEL Core 构建(确定性引擎,33/33 测试)。 开源(MIT 许可证)。无 SaaS。完全本地化。 GitHub: https://github.com/chokriabouzid-star/sel-deploy
查看原文
We wasted hours in post-mortems reconstructing &quot;what deployed when.&quot;<p>SEL Deploy creates a tamper-evident deployment timeline: • Each deployment: command hash, git commit, timestamp, exit code • Chained to previous (tampering breaks the chain) • Signed with Ed25519 (non-repudiable) • Local SQLite for fast timeline queries<p>Try it: git clone https:&#x2F;&#x2F;github.com&#x2F;chokriabouzid-star&#x2F;sel-deploy cd sel-deploy cargo build --release .&#x2F;target&#x2F;release&#x2F;sel-deploy keygen .&#x2F;target&#x2F;release&#x2F;sel-deploy run -- echo &quot;hello world&quot;<p>Built on SEL Core (deterministic engine, 33&#x2F;33 tests). Open source (MIT). No SaaS. Fully local.<p>GitHub: https:&#x2F;&#x2F;github.com&#x2F;chokriabouzid-star&#x2F;sel-deploy