- Joined
- Jun 12, 2020
Once installed it generates a device ID and sends you to one ofThe payment buttons are download links
or
This is what the fingerprint function looks like
JavaScript:
// Create a device fingerprint
async createFingerprint() {
const components = [
navigator.userAgent,
navigator.language,
screen.width + 'x' + screen.height,
screen.colorDepth,
new Date().getTimezoneOffset(),
navigator.hardwareConcurrency,
navigator.deviceMemory || 'unknown',
navigator.platform,
navigator.cookieEnabled,
navigator.doNotTrack,
navigator.maxTouchPoints || 'unknown'
];
// Create a hash from the components
const fingerprintString = components.join('|');
const encoder = new TextEncoder();
const data = encoder.encode(fingerprintString);
const hashBuffer = await crypto.subtle.digest('SHA-256', data);
const hashArray = Array.from(new Uint8Array(hashBuffer));
const hashHex = hashArray.map(b => b.toString(16).padStart(2, '0')).join('');
return hashHex.substring(0, 16).toUpperCase(); // Return first 16 characters
}
For something which claims to be anti-Jeet it sure looks like shitty half-baked Jeet vibecoding to me.





