๐ข PSA: Cluely is NOT slick
Unlike actual smart cheaters who hide their tracks, Cluely literally:
๐ฌ "A CS:GO cheater would have had an easier time making a VAC bypass than this" - Some chad developer, probably
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 ๐คก
}Choose your programming language