Detect Cluely cheating software and its evasion techniques
Project description
NoCluely-py
Python library for detecting Cluely employee monitoring software and its evasion techniques.
Installation
pip install no-cluely
Requirements
- Python: 3.8 or later
- Platform: macOS only (Cluely is macOS-specific)
- Architecture: x64 (Intel/Apple Silicon)
Quick Start
Simple Detection
from no_cluely import NoCluely
# Quick check
if NoCluely.is_cluely_running():
print("⚠️ Employee monitoring detected!")
else:
print("✅ No monitoring software found")
Detailed Analysis
from no_cluely import NoCluely
detection = NoCluely.detect_cluely_detailed()
if detection.is_detected:
print(f"🚨 Cluely Detected!")
print(f" Severity: {detection.severity_level}")
print(f" Windows: {detection.window_count}")
print(f" Techniques: {', '.join(detection.evasion_techniques)}")
else:
print("✅ System clean")
Real-time Monitoring
from no_cluely import CluelyMonitor
def on_detected(detection):
print(f"🚨 Monitoring started! Severity: {detection.severity_level}")
def on_removed():
print("✅ Monitoring stopped")
monitor = CluelyMonitor()
monitor.start(
interval=5.0, # Check every 5 seconds
on_detected=on_detected,
on_removed=on_removed
)
# Your application continues...
# Call monitor.stop() when done
License
MIT License
Contributing
Issues and pull requests welcome at: https://github.com/your-org/no-cluely-driver
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
no_cluely-0.0.4.tar.gz
(353.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
no_cluely-0.0.4-py3-none-any.whl
(179.4 kB
view details)
File details
Details for the file no_cluely-0.0.4.tar.gz.
File metadata
- Download URL: no_cluely-0.0.4.tar.gz
- Upload date:
- Size: 353.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e9e8f2cfacc06ba1358898f7f29e8e4bb0d94ba95a80fa5d72485ffe1b32830
|
|
| MD5 |
c3426e8c9dd2fb9af97ff9b62fe91f6c
|
|
| BLAKE2b-256 |
5f2eabdc7a7f62ea1c041f6b80db49aa406da2870fcd83b1ee9f5d7769fc811e
|
File details
Details for the file no_cluely-0.0.4-py3-none-any.whl.
File metadata
- Download URL: no_cluely-0.0.4-py3-none-any.whl
- Upload date:
- Size: 179.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1bfea0301cc123ec66ed21669069a16e71ce570832b970e1ba02f5e3abb4f66
|
|
| MD5 |
730102fb3bd6c99b8540120f8753a587
|
|
| BLAKE2b-256 |
469bc6cef985626278d202fc68597255757439e5446613615b34d39bd5f810b9
|