Guardian Logo

A powerful AI tool for unbiased independent cheat analysis

Visit YouTube examples

What is Guardian TrueSight?

Guardian TrueSight is a powerful, non-invasive cheat detection overlay that can run entirely server-side. Using advanced statistical analysis and behavioral modeling, it flags suspicious gameplay without touching the game client — no hooks, no risks, no interference.
Built for competitive integrity, Guardian TrueSight delivers unbiased, transparent data trusted by tournament organizers and esports platforms. It’s the gold standard for detecting foul play before payouts, reviews, or rulings — clear, objective, and battle-tested.
We are not standing still; Guardian is constantly evolving with new ideas, enhanced robustness, and continuous adaptability. It learns and quickly adjusts to new types of cheats.

Guardian Whitepaper Updated:
Now available with expanded coverage and key additions:
• Section 9: Aim Data and Collection
• Section 15: StatFreeze
• Section 16: Anti-Cheat Usermode

These are the major changes to the Whitepaper
The paper is subject to change before official submission to include new features currently in testing.

Live Analytics & Cheat Detection Visualization

Professional dashboards help admins and reviewers visualize detection data in real time. See examples below:

Entropy Over Time
Unnatural drops or spikes in entropy may indicate automated aim or macros.
Detection Breakdown
Overview of detections flagged this session.
Hitbox Aim Accuracy
Distribution of shots per hit region.

How does Guardian TrueSight work?

Guardian TrueSight is a fully automated system that reviews gameplay videos for cheating, suspicious patterns, and stat manipulation. Using advanced AI and statistical modeling, it identifies aimbots, soft aim, spinbot, aim assists, and more—catching even the subtlest signs of foul play.

Every session is automatically analyzed and scored. Guardian provides trust ratings, detailed anomaly reports, and visual overlays for reviewers. No client modifications or risky integrations—everything happens securely on the server side, making it safe and completely tamper-proof.

Trust score Real-time scoring and grading of every player session for instant integrity checks
Anchor lock Locks detection to valid targets only when AI confidence is high, reducing false flags
Entropy analysis Measures randomness and pattern consistency in aiming and hits to spot unnatural behavior
Statfreeze protection Detects stat manipulation attempts by analyzing abnormal hit ratios and entropy shifts
Soft aim detection Reveals low-variance, micro-adjusted aim that signals subtle or hidden aim-assist scripts
Snap aim detection Flags rapid, inhuman crosshair snaps and flicks typical of aimbots and macros
Aim velocity tracking Continuously monitors aim speed and acceleration to profile human vs. scripted motion
Spinbot detection Identifies high-frequency rotational patterns used in anti-aim or spinbot cheats
Aimbot detection Spots sustained inhuman accuracy, extreme headshot rates, and mechanical precision
Aim assist abuse detection Flags scripted or automated exploitation of in-game aim assist—beyond normal controller use
ShadowSight analysis Monitors for shadow aim, recoil scripts, and advanced cheat overlays invisible to viewers
Buffered region sampling Uses rolling hit and aim data windows to reduce noise and improve detection confidence
Event logging Full audit trail: every anomaly, violation, and detection event is time-stamped and exportable
Visual overlays Live overlays for entropy, hit zones, and detection flags—perfect for review and VOD
Guardian Law Applies transparent, published rules for every detection—ensuring unbiased, reviewable decisions
PDF & CSV reports Automated, exportable reports with session charts, trust grades, and violation breakdowns
Payout eligibility Flags or clears players for tournament rewards and payouts based on trust rating
False positive suppression Excludes known false-positive zones and time ranges for maximum detection accuracy
Customizable settings Flexible configuration for overlays, thresholds, and detection modes—fits any event
•️Guardian Review Mode Secure playback with overlays for admins and reviewers to investigate flagged moments

Automated PDF Reports: Evidence at a Glance

Every Guardian review session generates a professional, tamper-proof PDF whitepaper with real-time charts and data breakdowns. Reports summarize detection breakdowns, trust scores, aim distribution, entropy trends, and a clear payout recommendation for admins and players. Instantly shareable, visually clear, and always audit-ready.

Detection Types
Cheat, Anomoly, Violation, Clean
Trust Score Timeline
Shows integrity through session
Aim Entropy
Detects suspicious aim stability
Payout Status
Recommendation for payout

Guardian TrueSight — Unrivaled Competitive Integrity

World-class esports and wagering deserve next-generation anti-cheat technology.
Guardian TrueSight goes beyond detection by leveraging AI, computer vision, and proprietary analytics to deliver complete peace of mind.
Trust Score Engine
Continuously evaluates each player with a real-time trust score powered by data, not guesswork. Ideal to make a confident enforcement.
Anchor Lock
Precision targeting, redefined. Only scores when AI is 99% confident—eliminating false flags, giving you evidence that stands up to scrutiny.
Guardian Law
Proprietary logic engine delivers instant, escalating penalties for confirmed violations. Blocks cheaters and automates trust at scale.
ShadowSight
Advanced detection for subtle “soft aim” cheats. If it looks human but feels inhuman, ShadowSight sees through the disguise.
Entropy Analysis
Measures randomness of player aim and actions. Low entropy means automation—flagging bots and scripts even when they “look human.”
Aimbot & Snap Detection
Detects impossible aim snaps, pixel-perfect flicks, and classic aimbot moves with computer vision and velocity analysis. Instant, irrefutable.
Velocity & Movement Checking
Tracks crosshair speed and movement for non-human patterns. Flags superhuman velocity or robotic direction changes.
Live Detections
Spots all abnormal behavior, empowering fair review and keeping you aware of patterns that may be a type of new threat.
Frame by Frame
Reviews raw gameplay footage frame by frame, bounding boxes on every target using advanced computer vision technology.

When the stakes are highest, choose the system trusted by the future of competitive gaming.
Guardian TrueSight—see everything, miss nothing.

Guardian TrueSight: Advanced Anti-Cheat Video Analysis System

Guardian TrueSight is a sophisticated, AI-driven anti-cheat detection tool designed for analyzing gameplay video footage to identify potential cheating behaviors in first-person shooter (FPS) games. Leveraging advanced computer vision techniques, the system processes video frames with high accuracy to detect enemy entities, segment their bounding boxes into anatomical regions (head, upper torso, lower torso, legs), and track the player's aim point (crosshair) relative to these regions.

By modeling aim distribution as a probabilistic process, it computes weighted Shannon entropy to quantify the randomness and naturalness of hit patterns—low entropy signals repetitive, automated aiming (e.g., aimbots), while high entropy reflects human variability. Additional modules detect snap-aim (abrupt, high-speed target acquisitions) and soft-aim (unnaturally smooth deceleration near targets) through kinematic analysis of aim trajectories.

The system aggregates these metrics into a trust score (0-100) and categorical grade (e.g., "Excellent" to "Critical"), flagging violations such as anomalies, abnormalities, and explicit cheats. Outputs include an annotated video overlay with real-time diagnostics, CSV logs of entropy and hit data, and a comprehensive PDF report with visualizations.

Core Detection Pipeline

The system initializes with a pre-trained computer vision model for entity detection and processes each video frame as follows:

# Pseudo Code for Frame Processing Pipeline:
function process_frame(frame, model, config):
    # Step 1: Detect enemies using computer vision
    detections = model.predict(frame)
    filtered_detections = filter(detections, confidence >= config.CLASS_CONFIDENCE[class_id])

    # Step 2: Segment bounding boxes into body regions
    for detection in filtered_detections:
        box = [x1, y1, x2, y2]
        regions = segment_box(box, [proportional_divisions])

        # Step 3: Determine if aim point hits a region
        aim_x, aim_y = extract_aim_point(frame)
        hit_region = check_hit(aim_x, aim_y, regions)
        if hit_region:
            append_to_buffers(hit_region)

    # Step 4: Update entropy and detect cheats
    entropy = compute_entropy(buffers, config.WEIGHTS)
    zone = classify_zone(entropy, config.THRESHOLDS)
    detect_snap_aim(aim_trajectory)
    detect_soft_aim(aim_deltas)

    # Step 5: Update trust score
    trust_score = 100 - penalties + bonuses - detection_penalty

    # Step 6: Overlay diagnostics and log
    overlay_frame(frame, entropy, zone, trust_score, hits)
    log_event(zone_changes, detections)
    return annotated_frame

Entropy Calculation and Zone Classification

Entropy serves as the primary metric for assessing aim naturalness. It measures the uncertainty in hit distributions across body regions, weighted to penalize extremes. Hits are accumulated in multi-scale buffers to capture varying patterns, triggering entropy recalibration.

# Pseudo Code for Weighted Entropy Computation:
function compute_entropy(buffer, weights):
    if buffer.empty:
        return 0.0
    counts = counter(buffer)
    total = sum(counts.values)
    entropy = 0.0
    for region, count in counts:
        p = count / total
        w = weights[region]
        if p > 0:
            entropy -= p * log2(p) * w
    return normalize(entropy, config.MAX)

Snap-Aim Detection

Identifies sudden aim shifts by analyzing trajectory kinematics over time. Uses speed, angle, and inward motion thresholds to detect non-human aim behavior.

# Pseudo Code for Snap-Aim Detection:
function detect_snap_aim(trajectory, config):
    if trajectory.short:
        return False
    for window in trajectory.windows:
        speed = compute_speed(window)
        angle = compute_angle(window)
        inward = compute_inward_delta(window)
        if speed_high and angle_acute and inward_significant:
            flag_violation("SNAP")
            return True
    return False

Soft-Aim Detection

Detects aim-assist cheats via low-variance movement profiles. Uses variance checks and pattern similarity to catch smooth, unnatural aim deceleration near targets.

# Pseudo Code for Soft-Aim Detection:
function detect_soft_aim(deltas, config):
    speeds = compute_speeds(deltas)
    variance = compute_variance(speeds)
    if variance_low and mean_speed_low:
        similarity = check_pattern_similarity(deltas)
        if similarity_high:
            flag_violation("SOFT-AIM")
            return True
    return False

Guardian TrueSight: Detection Logic & Integrity Mechanisms

Below is a technical overview of the key mechanisms, buffers, and anti-cheat systems powering Guardian TrueSight's detection logic. Each module is engineered for precise, consistent, and reviewable results.

• 1. Anchor Lock Mechanism
Anchor Lock activates when the player’s aim intersects a detection box with ≥ 0.7 confidence, indicating a stable, high-certainty target.
Once triggered, the anchor serves as a positional reference point, and the system lowers the confidence requirement to 0.2 for classes 0 and 1 to allow more flexible, sustained detection during the countdown period.
Anchor Lock provides a reference for more reliable cheat detection.
• Countdown Trigger & Purpose
The countdown is triggered when a qualifying detection event occurs—specifically, when the player's aim intersects a detection box that meets or exceeds its class-specific confidence threshold. This initiates a focused evaluation period where the system begins collecting hits.
The countdown defines a fixed decision window, letting the system accumulate a reliable set of samples in a controlled time frame. This ensures consistency, prevents indefinite data capture, and supports accurate anchor lock evaluation and entropy scoring.
The countdown window ensures reliable, focused data for fair detection.
• Hit Detection, Buffers, Messaging & Configurability
While the countdown runs, the system collects valid hits into three configurable datanodes: datanode_1 (15 hits), datanode_2 (35 hits), and datanode_3 (75 hits). Each buffer flushes its data to entropy analysis once full, ensuring precise, time-bound sampling.
The system provides real-time visual feedback: “collecting...” when hits are recorded, “adjusting...” when a detection is found but its confidence is too low to count, and “hit declined.” when a buffer is full. Cooldown periods prevent immediate re-triggering. All thresholds, limits, and timers are centrally managed for easy customization.
Configurable buffers and real-time messages ensure flexible, robust operation.
• Detection Classes, Confidence Thresholds & Hit Zones
Detection classes are assigned customizable confidence thresholds. When a target is detected, Guardian TrueSight draws a bounding box and, for certain classes, further segments it by Y-axis to identify regions—such as head, upper torso, lower torso, and legs—for detailed, region-based hit analysis.

Detection Class Behaviors:
Class 0 – FULLBODY: Box is divided (using Y coordinates) into head, upper torso, lower torso, and legs. Hits are classified by the Y position of the crosshair within the box.
Class 2 – HEAD: Any hit within this box (by X/Y overlap) is registered as a headshot.
Class 3 – HEADSHOULDERS: Box is split top/bottom; hits in the upper segment count as head, lower as torso.
Class 4 – SNIPER: Head-only, used for high-precision sniper situations.
Class 1 – DOWNED: Incapacitated/invalid targets, ignored by the system.
All classes and thresholds are fully configurable for any game or event.
• Shadow Sight™ Soft-Aim Analysis
Shadow Sight™ is a real-time soft-aim detection engine that continuously monitors crosshair movements around targets, defines dynamic buffer zones around YOLO-detected bounding boxes to meticulously track slowdown, instantaneous speed, and movement velocity, and analyzes movement sequences to distinguish perfectly uniform, non-human soft-aim from standard aim-assist profiles. Upon confirmation, it enforces configurable entropy penalties, logs violations, and updates on-screen HUD overlays.
Shadow Sight™ enables highly accurate, real-time soft-aim detection.
• Trust Score System
The trust score is a silent background system that tracks player behavior over time. It rewards clean, consistent input and reduces when suspicious or irregular actions are detected. Players with low trust scores may experience limited responsiveness or hidden restrictions.
This system works seamlessly with player reports and other signals to flag potential bad actors more accurately—without false positives or direct confrontation.
The trust score keeps anti-cheat seamless and player-friendly.

Esports Tournament Integrity

Guardian TrueSight helps tournament organizers confirm the legitimacy of finalist gameplay using forensic-level review tools.

  • Server-side aim entropy & behavioral fingerprinting
  • Manual review dashboards for contested results
  • Optional full system audits before final payouts

Guardian will soon be providing complete protection for tournament orginzers helping them to make an informed descrion weather or not to issue the payout.

Soon, tournament hosts will be able to upload full match replays or share direct VOD links — Guardian will analyze aim decay, frame pacing, and unnatural smoothness at a forensic level.

Results are delivered to your dashboard or inbox, including a downloadable match archive and a full technical whitepaper for official rulings.

Built for fairness. Engineered for trust. Coming soon to Guardian TrueSight.

Get in Touch

We welcome partnerships, advertising opportunities, and collaborations to protect your game from cheats using server-side technology. All submissions are completely anonymous, and no information is shared with third parties.

📩 contact@guardiantruesight.com

We typically reply within 24 hours.

© 2025 Guardian TrueSight. All rights reserved. Guardian labs