Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
dracon-utilities — Invisible infrastructure for Dracon developer workspaces: git sync, system guard, and warden encryption utilities. | Kitploit
Herramientas/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.

Ver Repositorio
1hace 1 díaAún no revisado

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir
Sitio web
Contenido no disponible en el idioma solicitado. Mostrando versión en inglés.

Dracon Utilities

Public release repository for the Dracon system service CLI utilities. These tools install to ~/.local/bin/, run as user-level system services where appropriate, and keep operational state outside the git tree.

This is the meta workspace and release-documentation repository. The three utilities are standalone git repositories nested below this directory; their published dracon-git and dracon-system-lib dependencies come from crates.io, so no dracon-libs checkout is required.

Latest versions (2026-08-19; Warden candidate prepared locally)

UtilityVersionWhat shippedRelease notes
dracon-syncv0.113.50Standalone daemon repository; see its changelog for the latest release notesdracon-sync/CHANGELOG.md
dracon-wardenv0.113.5Standalone encryption and repository-hardening repository; local release candidate built and installeddracon-warden/CHANGELOG.md
dracon-systemv0.112.37Standalone disk/process guard repositorydracon-system/CHANGELOG.md

The Warden v0.113.5 candidate is source-complete and built locally from the locked checkout; registry publication, tag creation, and a forge release are still separate operator-approved steps. The workspace gate is cargo test --workspace --locked, with the additional format, build, deny, and clippy checks documented in AGENTS.md.

Install

The 3 utilities can be installed independently via cargo install from crates.io:

root@kitploit:~
cargo install dracon-sync     # Background git sync daemon
cargo install dracon-system   # Disk, process, guard, doctor
cargo install dracon-warden   # Secret, encrypt, age, git-filter

Or build all 3 from a checkout of this meta workspace:

root@kitploit:~
git clone https://github.com/DraconDev/dracon-utilities.git
cd dracon-utilities
# The parent tracks the standalone repositories by path; clone them first.
git clone https://github.com/DraconDev/dracon-sync-background-auto-commit-multi-remote.git dracon-sync
git clone https://github.com/DraconDev/dracon-system-disk-process-guard-doctor.git dracon-system
git clone https://github.com/DraconDev/dracon-warden-secret-encrypt-age-git-filter.git dracon-warden
cargo build --release --locked
# Binaries at target/release/dracon-{sync,system,warden}

Each long-name repository is also independently buildable:

root@kitploit:~
git clone https://github.com/DraconDev/dracon-sync-background-auto-commit-multi-remote.git
cd dracon-sync-background-auto-commit-multi-remote
cargo build --release --locked

Utilities

Standalone utility repositories

Each utility has its own standalone repository on GitHub and GitLab. Codeberg is retired from the active mirror set. The standalone repositories contain the implementation, tests, examples, and release metadata; this parent repository provides the shared workspace, installer, CI, and operational documentation.

  • DraconDev/dracon-sync-background-auto-commit-multi-remote (also on GitLab)
  • DraconDev/dracon-system-disk-process-guard-doctor (also on GitLab)
  • DraconDev/dracon-warden-secret-encrypt-age-git-filter (also on GitLab)

The names are deliberately descriptive so they are self-explanatory in search results. The daemon commits each nested repository independently; there is no façade-generation script or parent post-commit mirror step.

Repository architecture

This is a 4-repo system with distinct roles. Each repo has one job:

Each nested utility repository is a real install target. Users can choose cargo install dracon-{sync,system,warden} from crates.io, clone one of the standalone repositories, or clone this meta workspace plus its three nested members.

Releases are cut from the relevant nested repository with its local scripts/release.sh. The parent workspace is for coordinated build and audit checks; it is not a source-mirroring layer.

Quick Start

root@kitploit:~
# Clone the public release repository
git clone https://github.com/DraconDev/dracon-utilities.git
cd dracon-utilities

# Restore the three nested standalone repositories
git clone https://github.com/DraconDev/dracon-sync-background-auto-commit-multi-remote.git dracon-sync
git clone https://github.com/DraconDev/dracon-system-disk-process-guard-doctor.git dracon-system
git clone https://github.com/DraconDev/dracon-warden-secret-encrypt-age-git-filter.git dracon-warden

# Install all utilities
./install.sh

# Restart services after installation
systemctl --user restart dracon-sync.service
systemctl --user restart dracon-system-guard.service

dracon-warden is installed by install.sh and enabled through dracon-warden setup-hooks --global; it does not run as a daemon.

What Each Utility Does

dracon-sync

dracon-sync watches configured git repositories, waits for changes to settle, commits deterministic diff-based messages, and pushes to origin and optional mirrors.

Common commands:

root@kitploit:~
dracon-sync status          # Show policy path, roots, and discovered repos
dracon-sync repos           # One-shot repo report
dracon-sync health          # Daemon health check
dracon-sync daemon          # Run continuous sync loop
dracon-sync sync-now ~/Dev/my-project
dracon-sync sync-now --warns       # handle current WARN rows now
dracon-sync config validate

See dracon-sync/README.md for configuration, mirrors, commit messages, repair commands, and release pipeline behavior.

dracon-system

dracon-system protects local machines from disk/process pressure and provides storage, link, zram, and service diagnostics.

Common commands:

root@kitploit:~
dracon-system status        # Show core path and service status
dracon-system doctor        # Run deterministic diagnostics
dracon-system storage ~/Dev # Analyze storage hotspots
dracon-system guard daemon  # Run continuous monitoring
dracon-system link status   # Check configured symlinks
dracon-system zram --status

See dracon-system/README.md for thresholds, cleanup behavior, process renice policy, and deployment examples.

dracon-warden

dracon-warden encrypts secret-shaped content at rest in git while keeping normal plaintext files in the working tree. It uses git clean/smudge filters and global or local hooks as the primary enforcement layer.

Common commands:

root@kitploit:~
dracon-warden status        # Show resolved policy and repo roots
dracon-warden keygen        # Generate a machine age keypair
dracon-warden setup-hooks --global
dracon-warden once
dracon-warden scrub-markers
dracon-warden resmudge

See dracon-warden/README.md for the encryption model, plaintext-sibling escape hatch, recovery tools, and safety notes.

Configuration

Each utility reads its own TOML policy under ~/.dracon/utilities/:

Operational state lives outside this repository, for example:

root@kitploit:~
~/.local/state/dracon/
├── dracon-sync-incidents.jsonl
├── dracon-sync-stuck-push-repos.json
├── dracon-system-guard.log
└── visibility-sync/

Services

ServiceBinaryPurpose
dracon-sync.servicedracon-sync daemonGit sync automation
dracon-system-guard.servicedracon-system guard daemonDisk/process protection

Useful commands:

root@kitploit:~
systemctl --user status dracon-sync.service dracon-system-guard.service
journalctl --user -u dracon-sync -f
journalctl --user -u dracon-system-guard -f
systemctl --user restart dracon-sync.service dracon-system-guard.service

Development

root@kitploit:~
# Reliable full test run
export DRACON_SYNC_GIT_BIN=/run/current-system/sw/bin/git
cargo test --workspace -- --test-threads=1

# Quality gates
cargo fmt -p dracon-sync -p dracon-system -p dracon-warden -- --check
cargo clippy -p dracon-sync -p dracon-system -p dracon-warden --all-targets --no-deps
cargo build --release -p dracon-sync -p dracon-system -p dracon-warden
cargo deny check
./scripts/verify-spec.sh

Documentation

License

AGPL-3.0-only — see LICENSE for details.

Descargar herramienta
Utilitycrates.ioPurposeRuntime
dracon-synccrates.ioBackground, auto-commit, multi-remote git sync for developer workspacessystemd user service
dracon-systemcrates.ioDisk, process, guard, doctor — local machine diagnostics and watchdogsystemd user service
dracon-wardencrates.ioSecret, encrypt, age, git-filter — repository hardening and smudge/clean encryptiongit hooks + CLI
RepoRoleContainsUpdated by
DraconDev/dracon-utilities (this repo)Meta workspaceWorkspace manifest, installer, CI, policy docs, and audit recordsOperator + daemon for this repo
DraconDev/dracon-sync-background-auto-commit-multi-remoteStandalone source/install targetdracon-sync source, tests, config, and release metadataDaemon watches and pushes this repo
DraconDev/dracon-system-disk-process-guard-doctorStandalone source/install targetdracon-system source, tests, config, and release metadataDaemon watches and pushes this repo
DraconDev/dracon-warden-secret-encrypt-age-git-filterStandalone source/install targetdracon-warden plus its embedded security crateDaemon watches and pushes this repo
UtilityPolicyExample
dracon-sync~/.dracon/utilities/sync/dracon-sync.tomldracon-sync/dracon-sync.example.toml
dracon-system~/.dracon/utilities/system/dracon-system.tomldracon-system/dracon-system.example.toml
dracon-warden~/.dracon/utilities/warden/dracon-warden.tomldracon-warden/dracon-warden.example.toml
DocumentPurpose
docs/ROADMAP.mdDocumentation map and release status
docs/ARCHITECTURE.mdService architecture and deterministic commit protocol
docs/OPERATIONS.mdSystemd, incident response, troubleshooting
docs/design/cli-print-style.mdHuman-facing CLI output conventions
docs/design/warden-plaintext-sibling.mdWarden plaintext escape hatch threat model
docs/design/github-feature-repos.mdHistorical façade-repo design and its replacement
dracon-sync/README.mdSync daemon usage and configuration
dracon-system/README.mdSystem guard usage and configuration
dracon-warden/README.mdRepo encryption usage and configuration
SECURITY.mdSecurity reporting policy
CHANGELOG.mdVersion history
CONTRIBUTING.mdContribution workflow