Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
dracon-utilities — Invisible infrastructure for Dracon developer workspaces: git sync, system guard, and warden encryption utilities. | Kitploit
工具/GitLabGitLab/dracondev/dracon-utilities
General Purpose UtilitiesEncryption/Decryption ToolsDevSecOpsSecret Detection
GitLabdracondev/dracon-utilities

dracon-utilities

Invisible infrastructure for Dracon developer workspaces: git sync, system guard, and warden encryption utilities.

查看仓库
813小时56分前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
网站
内容在请求的语言中不可用。显示英文版本。

Dracon Utilities

Three small Rust CLI tools that look after a Linux development machine: one keeps your git repos committed and backed up, one keeps your disk and memory from falling over, and one stops secrets from landing in your git history. They run as ordinary user-level systemd services — no root required.

ToolThe problem it solvesIn one line
dracon-sync"I edited files all day and never committed."Watches your repos, auto-commits changes with deterministic messages, pushes to GitHub/GitLab/wherever
dracon-system"My disk filled up mid-build and everything froze."Guards disk & memory pressure, cleans known space hogs, diagnoses storage issues
dracon-warden"I nearly pushed my API key to GitHub."Transparently encrypts secret-shaped files (age) so they're safe at rest in git but plaintext in your editor

Everything here is one Cargo workspace: cargo test at the repo root builds and tests all three (~1400 tests).

Try it in 60 seconds

root@kitploit:~
git clone https://github.com/DraconDev/dracon-utilities.git
cd dracon-utilities
cargo build --release --locked

./target/release/dracon-system doctor      # health check of this machine
./target/release/dracon-sync status        # what sync would watch

Install

root@kitploit:~
./install.sh                                # binaries -> ~/.local/bin
systemctl --user enable --now dracon-sync.service        # background auto-commit
systemctl --user enable --now dracon-system-guard.service # background guard
./uninstall.sh                              # remove binaries and services (configs kept unless --purge)

`install.sh` stops the services while it works, refreshes the user
service units from the repo, installs the warden git hooks globally,
and restarts the services afterwards (see `./install.sh --help`;
`--no-restart` and `--binaries-only` opt out of parts of this).

dracon-warden is not a service — after install, run dracon-warden setup-hooks --global once to arm its git hooks, then dracon-warden keygen to create the machine's age keypair.

Each tool then reads its TOML config from ~/.dracon/utilities/ (examples ship in each tool's directory). Nothing tracked by git ever lives outside the repo tree; state goes to ~/.dracon/ and ~/.local/state/dracon/.

The tools in practice

dracon-sync

You work; it commits. Give it watch roots (~/Dev, say) and it discovers every git repo beneath them, waits for edits to settle, commits with deterministic diff-based messages, and pushes to origin plus any configured mirrors. It classifies push failures (STUCK/BLOCKED/BROKEN) instead of silently retrying forever, and flags repos that vanish from disk.

root@kitploit:~
dracon-sync daemon              # continuous loop (what the service runs)
dracon-sync repos               # live report of every watched repo
dracon-sync sync-now ~/Dev/my-project
dracon-sync health

More: dracon-sync/README.md

dracon-system

A watchdog for the machine itself. When disk or memory pressure crosses warn/critical thresholds it can clean regenerable junk (build dirs, caches), deprioritize memory hogs so your desktop stays responsive, and bias the kernel's out-of-memory killer toward the actual offenders. Also does one-shot diagnostics: storage hotspots, symlink management, zram status.

root@kitploit:~
dracon-system doctor            # deterministic diagnostics pass
dracon-system storage ~/Dev     # where did my disk go?
dracon-system guard clean       # reclaim space (dry-run first)
dracon-system guard daemon      # continuous monitoring (the service)

More: dracon-system/README.md

dracon-warden

Git filter-based encryption using age. Files matching secret patterns (.env, *.key, …) are encrypted on commit and decrypted on checkout, so the working tree stays normal while the remote holds only ciphertext. Global hooks back this up by scanning every push for secret-shaped content and blocking risky ones.

root@kitploit:~
dracon-warden keygen            # machine age keypair
dracon-warden setup-hooks --global
dracon-warden status            # what's protected on this machine

More: dracon-warden/README.md

Repository layout

root@kitploit:~
dracon-utilities/
├── dracon-sync/      # auto-commit multi-remote git sync daemon
├── dracon-system/    # disk/process guard, storage & diagnostics
├── dracon-warden/    # age-based git secret encryption (hooks + CLI)
│   └── src/security/ #   embedded dracon-security crate
├── .github/workflows/ci.yml  # lint / test / release-build / deny / nix
├── flake.nix         # optional Nix build path
├── scripts/          # release, checks, audit tooling
└── AGENTS.md         # policies for agents/operators working here

Development

root@kitploit:~
export DRACON_SYNC_GIT_BIN=/run/current-system/sw/bin/git  # NixOS only
cargo test --workspace --locked
cargo clippy --workspace --locked -- -D warnings
cargo deny check
nix flake check                 # optional

Per-tool builds: cargo build --release --locked -p dracon-{sync,system,warden}.

Releases

Latest component releases: 2026-09-01 — see Releases. Current component versions: dracon-sync 0.113.55 · dracon-system 0.112.40 · dracon-warden 0.113.6. Details per tool in each directory's CHANGELOG.md.

History note: before 2026-08-22 each utility lived in its own repo (DraconDev/dracon-sync-background-auto-commit-multi-remote, ...-disk-process-guard-doctor, ...-secret-encrypt-age-git-filter). Those remain as frozen mirrors; all development happens here now.

Documentation

docs/ROADMAP.md is the single documentation map — start there for install, operations, contributing, security, and version history. Durable design investigations are indexed separately in docs/README.md (design index).

License

AGPL-3.0-only — see LICENSE for details.

下载工具