import React from 'react'; import { DEVICE_DATABASE } from '../utils/formatters'; const HelpModal = ({ isOpen, onClose }) => { if (!isOpen) return null; return (
Shows the overall risk score for the monitored machine. The score ranges from 0.0 (definitely human) to 1.0 (definitely a jiggler). The color coding helps you quickly identify risk levels:
Raw data and calculations behind the risk score. Key components:
List of hardware devices (mice, keyboards) observed on this machine. Known devices contribute to lower risk scores, while unknown devices increase suspicion.
Device ID Format: VID/PID (Vendor ID/Product ID) - unique identifiers for hardware.
Level 1 behavioral analysis that measures human vs robotic patterns:
Advanced AI/ML contribution to risk assessment:
Models Used: Isolation Forest and One-Class SVM for anomaly detection.
List of computers currently being monitored:
Timeline showing how the risk score has changed over time. Helps identify patterns and trends in activity behavior.
Common device manufacturers and their VID codes:
| VID | Manufacturer | Popular Models |
|---|---|---|
{vid} |
{vendor.name} | {Object.values(vendor.devices).slice(0, 3).join(', ')} {Object.keys(vendor.devices).length > 3 && '...'} |
The system combines three detection methods for maximum accuracy:
The final risk score is a weighted blend of all three methods, providing enterprise-grade detection of mouse jigglers and simulated activity.