Cluely getting an F grade

CLUELY DETECTED ๐Ÿ’€๐Ÿ‘Œโš ๏ธ

F
Stealth Mode
A+
Detection
๐Ÿ’ฏ
Open Source
๐ŸŽ
MacOS Only

How We Catch These Cheaters ๐Ÿ•ต๏ธ

๐Ÿ“ข PSA: Cluely is NOT slick

Unlike actual smart cheaters who hide their tracks, Cluely literally:

  • FAIL #1Names its process "cluely" - Like wearing a shirt that says "I'M CHEATING" ๐Ÿ’€
  • FAIL #2Uses sharing_state = 0 - Trying to avoid screen recording (sus much? ๐Ÿค”)
  • FAIL #3Elevated window layers - Staying on top like it owns the place ๐Ÿ‘‘

๐Ÿ’ฌ "A CS:GO cheater would have had an easier time making a VAC bypass than this" - Some chad developer, probably

// Real detection code
let window_id = get_dict_int(window_dict, WINDOW_NUMBER);
let sharing_state = get_dict_int(window_dict, WINDOW_SHARING_STATE);
let layer = get_dict_int(window_dict, WINDOW_LAYER);

let window_info = WindowInfo {
    owner,
    window_id,
    sharing_state,  // <- this exposes everything lmao
    layer,          // <- ez clap
};

result.is_detected = true;  // gottem ๐Ÿ˜Ž
result.window_count += 1;

// Check for specific evasion techniques
if sharing_state == 0 {
    result.screen_capture_evasion_count += 1;
    // congratulations, you played yourself ๐Ÿคก
}

SDK Downloads ๐Ÿ“š

Choose your programming language

๐Ÿ Python
PyPI versionPyPI downloads
pip install no-cluelyClick to copy
๐Ÿ“ฆ JavaScript
npm versionnpm downloads
npm install no-cluelyClick to copy
๐Ÿฆ€ Rust
Crates.io versionCrates.io downloads
cargo add no-cluely-driverClick to copy