@anonympins/fingerprint 0.2.2 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +726 -650
- package/fingerprint.builder.js +171 -160
- package/fingerprint.client.js +482 -459
- package/fingerprint.js +446 -87
- package/package.json +88 -79
- package/pow.solver.js +12 -0
- package/problem-manager.js +198 -22
package/fingerprint.builder.js
CHANGED
|
@@ -1,161 +1,172 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Algorithme de hachage cyrb53 (rapide et faible taux de collision).
|
|
3
|
-
*/
|
|
4
|
-
export const cyrb53 = (str, seed = 0) => {
|
|
5
|
-
let h1 = 0xdeadbeef ^ seed,
|
|
6
|
-
h2 = 0x41c6ce57 ^ seed;
|
|
7
|
-
for (let i = 0, ch; i < str.length; i++) {
|
|
8
|
-
ch = str.charCodeAt(i);
|
|
9
|
-
h1 = Math.imul(h1 ^ ch, 2654435761);
|
|
10
|
-
h2 = Math.imul(h2 ^ ch, 1597334677);
|
|
11
|
-
}
|
|
12
|
-
h1 =
|
|
13
|
-
Math.imul(h1 ^ (h1 >>> 16), 2246822507) ^
|
|
14
|
-
Math.imul(h2 ^ (h2 >>> 13), 3266489909);
|
|
15
|
-
h2 =
|
|
16
|
-
Math.imul(h2 ^ (h2 >>> 16), 2246822507) ^
|
|
17
|
-
Math.imul(h1 ^ (h1 >>> 13), 3266489909);
|
|
18
|
-
return 4294967296 * (2097151 & h2) + (h1 >>> 0);
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* Classe pour construire une empreinte composite (Multi-Hash).
|
|
23
|
-
* Format de sortie : "grp1:hash1|grp2:hash2|grp3:hash3"
|
|
24
|
-
*/
|
|
25
|
-
export class FingerprintBuilder {
|
|
26
|
-
constructor() {
|
|
27
|
-
this.components = new Map();
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* Ajoute un composant au hash global.
|
|
32
|
-
* @param {string} group - Le nom du groupe (ex: 'hw', 'screen', 'geo')
|
|
33
|
-
* @param {string|number|boolean} value - La valeur brute à hasher
|
|
34
|
-
*/
|
|
35
|
-
add(group, value) {
|
|
36
|
-
if (value === undefined || value === null) return this;
|
|
37
|
-
// On hash la valeur individuellement pour l'anonymiser et réduire sa taille
|
|
38
|
-
this.components.set(group, cyrb53(String(value)));
|
|
39
|
-
return this;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* Adds a raw component without hashing it.
|
|
44
|
-
* Useful for metrics that need to be read on the server.
|
|
45
|
-
* @param {string} group - The name of the group.
|
|
46
|
-
* @param {string|number} value - The raw value.
|
|
47
|
-
*/
|
|
48
|
-
addRaw(group, value) {
|
|
49
|
-
if (value === undefined || value === null) return this;
|
|
50
|
-
this.components.set(group, value);
|
|
51
|
-
return this;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
/**
|
|
55
|
-
* Affiche les composants actuels dans la console.
|
|
56
|
-
* @param {string} [title='FingerprintBuilder Components'] - Un titre pour le log.
|
|
57
|
-
*/
|
|
58
|
-
log(title = 'FingerprintBuilder Components') {
|
|
59
|
-
console.log(`--- ${title} ---`);
|
|
60
|
-
const sortedComponents = Array.from(this.components.entries())
|
|
61
|
-
.sort((a, b) => a[0].localeCompare(b[0]));
|
|
62
|
-
|
|
63
|
-
console.table(Object.fromEntries(sortedComponents));
|
|
64
|
-
console.log(`Final string: ${this.toString()}`);
|
|
65
|
-
console.log(`---------------------------------${'-'.repeat(title.length)}`);
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
/**
|
|
69
|
-
* Génère la chaîne de signature finale.
|
|
70
|
-
* Trie les clés pour garantir un ordre déterministe.
|
|
71
|
-
*/
|
|
72
|
-
toString() {
|
|
73
|
-
return Array.from(this.components.entries())
|
|
74
|
-
.sort((a, b) => a[0].localeCompare(b[0])) // Tri alphabétique des clés
|
|
75
|
-
.map(([key, hash]) => `${key}:${hash}`)
|
|
76
|
-
.join("|");
|
|
77
|
-
}
|
|
78
|
-
/**
|
|
79
|
-
* Adds a raw component without hashing it.
|
|
80
|
-
* Useful for metrics that need to be read on the server.
|
|
81
|
-
* @param {string} group - The name of the group.
|
|
82
|
-
* @param {string|number} value - The raw value.
|
|
83
|
-
*/
|
|
84
|
-
addRaw(group, value) {
|
|
85
|
-
if (value === undefined || value === null) return this;
|
|
86
|
-
this.components.set(group, value);
|
|
87
|
-
return this;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
/**
|
|
91
|
-
* Compares two fingerprints and returns a similarity score (0 to 1).
|
|
92
|
-
* Uses weights to give more importance to strong invariants (Canvas, GPU).
|
|
93
|
-
* @param {string} fpString1 - Fingerprint A
|
|
94
|
-
* @param {string} fpString2 - Fingerprint B
|
|
95
|
-
*/
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
'
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
//
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
//
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Algorithme de hachage cyrb53 (rapide et faible taux de collision).
|
|
3
|
+
*/
|
|
4
|
+
export const cyrb53 = (str, seed = 0) => {
|
|
5
|
+
let h1 = 0xdeadbeef ^ seed,
|
|
6
|
+
h2 = 0x41c6ce57 ^ seed;
|
|
7
|
+
for (let i = 0, ch; i < str.length; i++) {
|
|
8
|
+
ch = str.charCodeAt(i);
|
|
9
|
+
h1 = Math.imul(h1 ^ ch, 2654435761); // Use Math.imul for 32-bit multiplication
|
|
10
|
+
h2 = Math.imul(h2 ^ ch, 1597334677);
|
|
11
|
+
}
|
|
12
|
+
h1 =
|
|
13
|
+
Math.imul(h1 ^ (h1 >>> 16), 2246822507) ^
|
|
14
|
+
Math.imul(h2 ^ (h2 >>> 13), 3266489909);
|
|
15
|
+
h2 =
|
|
16
|
+
Math.imul(h2 ^ (h2 >>> 16), 2246822507) ^
|
|
17
|
+
Math.imul(h1 ^ (h1 >>> 13), 3266489909);
|
|
18
|
+
return 4294967296 * (2097151 & h2) + (h1 >>> 0);
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Classe pour construire une empreinte composite (Multi-Hash).
|
|
23
|
+
* Format de sortie : "grp1:hash1|grp2:hash2|grp3:hash3"
|
|
24
|
+
*/
|
|
25
|
+
export class FingerprintBuilder {
|
|
26
|
+
constructor() {
|
|
27
|
+
this.components = new Map();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Ajoute un composant au hash global.
|
|
32
|
+
* @param {string} group - Le nom du groupe (ex: 'hw', 'screen', 'geo')
|
|
33
|
+
* @param {string|number|boolean} value - La valeur brute à hasher
|
|
34
|
+
*/
|
|
35
|
+
add(group, value) {
|
|
36
|
+
if (value === undefined || value === null) return this;
|
|
37
|
+
// On hash la valeur individuellement pour l'anonymiser et réduire sa taille
|
|
38
|
+
this.components.set(group, cyrb53(String(value)));
|
|
39
|
+
return this;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Adds a raw component without hashing it.
|
|
44
|
+
* Useful for metrics that need to be read on the server.
|
|
45
|
+
* @param {string} group - The name of the group.
|
|
46
|
+
* @param {string|number} value - The raw value.
|
|
47
|
+
*/
|
|
48
|
+
addRaw(group, value) {
|
|
49
|
+
if (value === undefined || value === null) return this;
|
|
50
|
+
this.components.set(group, value);
|
|
51
|
+
return this;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Affiche les composants actuels dans la console.
|
|
56
|
+
* @param {string} [title='FingerprintBuilder Components'] - Un titre pour le log.
|
|
57
|
+
*/
|
|
58
|
+
log(title = 'FingerprintBuilder Components') {
|
|
59
|
+
console.log(`--- ${title} ---`);
|
|
60
|
+
const sortedComponents = Array.from(this.components.entries())
|
|
61
|
+
.sort((a, b) => a[0].localeCompare(b[0]));
|
|
62
|
+
|
|
63
|
+
console.table(Object.fromEntries(sortedComponents));
|
|
64
|
+
console.log(`Final string: ${this.toString()}`);
|
|
65
|
+
console.log(`---------------------------------${'-'.repeat(title.length)}`);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Génère la chaîne de signature finale.
|
|
70
|
+
* Trie les clés pour garantir un ordre déterministe.
|
|
71
|
+
*/
|
|
72
|
+
toString() {
|
|
73
|
+
return Array.from(this.components.entries())
|
|
74
|
+
.sort((a, b) => a[0].localeCompare(b[0])) // Tri alphabétique des clés
|
|
75
|
+
.map(([key, hash]) => `${key}:${hash}`)
|
|
76
|
+
.join("|");
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Adds a raw component without hashing it.
|
|
80
|
+
* Useful for metrics that need to be read on the server.
|
|
81
|
+
* @param {string} group - The name of the group.
|
|
82
|
+
* @param {string|number} value - The raw value.
|
|
83
|
+
*/
|
|
84
|
+
addRaw(group, value) {
|
|
85
|
+
if (value === undefined || value === null) return this;
|
|
86
|
+
this.components.set(group, value);
|
|
87
|
+
return this;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Compares two fingerprints and returns a similarity score (0 to 1).
|
|
92
|
+
* Uses weights to give more importance to strong invariants (Canvas, GPU).
|
|
93
|
+
* @param {string} fpString1 - Fingerprint A
|
|
94
|
+
* @param {string} fpString2 - Fingerprint B
|
|
95
|
+
*/
|
|
96
|
+
// Note on `volatileKeys`: These keys are ignored during the comparison between the fingerprint
|
|
97
|
+
// of the request that *triggered* a challenge and the fingerprint of the request that *submits*
|
|
98
|
+
// the solution. This is because headers like Client-Hints (ch_*), cookie presence, and upgrade-insecure-requests
|
|
99
|
+
// can legitimately change or be absent on the subsequent request, especially after a redirect.
|
|
100
|
+
// By ignoring them, we focus the comparison on more stable identifiers like UA, JA3, GPU, etc.
|
|
101
|
+
static compare(fpString1, fpString2) {
|
|
102
|
+
if (!fpString1 || !fpString2) return 0;
|
|
103
|
+
|
|
104
|
+
const parse = (str) => new Map(str.split("|").map(part => part.split(":")).filter(([k,v]) => k && v));
|
|
105
|
+
|
|
106
|
+
const map1 = parse(fpString1);
|
|
107
|
+
const map2 = parse(fpString2);
|
|
108
|
+
|
|
109
|
+
// Keys to ignore when comparing the initial request fingerprint with the challenge solver's fingerprint.
|
|
110
|
+
// Headers like Client-Hints (ch_*), cookie presence (cookie_keys), and upgrade-insecure-requests
|
|
111
|
+
// can vary or be absent on the subsequent request that submits the solution, especially after a redirect.
|
|
112
|
+
// By ignoring them, we focus the comparison on more stable identifiers like UA, JA3, GPU, etc.
|
|
113
|
+
const volatileKeys = new Set([
|
|
114
|
+
'ch_ua', 'ch_platform', 'ch_mobile', 'ch_model', 'ch_arch', 'ch_bitness',
|
|
115
|
+
'cookie_keys', 'upgrade',
|
|
116
|
+
// Also ignore network and http version as they can change between requests (e.g., proxy, protocol upgrade)
|
|
117
|
+
'network', 'http_ver',
|
|
118
|
+
// Ignore proxy-related headers as they are not stable client identifiers
|
|
119
|
+
'x_forwarded_for', 'x_real_ip', 'cf_connecting_ip'
|
|
120
|
+
]);
|
|
121
|
+
|
|
122
|
+
// Poids de "véracité" (Entropie/Stabilité)
|
|
123
|
+
// Les poids sont augmentés pour donner plus d'importance aux signaux forts.
|
|
124
|
+
const weights = {
|
|
125
|
+
// --- Signaux très forts (difficiles à usurper) ---
|
|
126
|
+
cvs: 5.0, // Canvas: Très haute entropie (Rendu unique du GPU/driver)
|
|
127
|
+
gpu: 4.0, // GPU: Haute entropie (Matériel spécifique)
|
|
128
|
+
ja3: 3.5, // JA3: Identifie la librairie TLS (très stable pour un client donné)
|
|
129
|
+
ja4: 4.0, // JA4: Plus moderne, inclut HTTP/2
|
|
130
|
+
h2_settings: 3.0, // HTTP/2 settings frame fingerprint
|
|
131
|
+
tcp_fp: 2.5, // TCP/IP fingerprint
|
|
132
|
+
ua: 2.0, // User-Agent: Signal fort, bien que modifiable
|
|
133
|
+
|
|
134
|
+
// --- Signaux composites et dérivés ---
|
|
135
|
+
client_fp_hash: 3.0, // Le hash de l'empreinte client est un signal très fort.
|
|
136
|
+
browser: 1.5, // Le navigateur extrait du UA.
|
|
137
|
+
os_version: 1.5, // L'OS extrait du UA.
|
|
138
|
+
device_type: 1.0, // Le type d'appareil extrait du UA.
|
|
139
|
+
|
|
140
|
+
// --- Signaux moyens ---
|
|
141
|
+
hw: 1.5, // Hardware (CPU, RAM): Stabilité moyenne
|
|
142
|
+
scr: 1.0, // Screen: Stabilité moyenne
|
|
143
|
+
// 'os' est souvent la même chose que 'ch_platform', on peut le déprécier ou lui donner un poids faible.
|
|
144
|
+
os: 0.8, // OS (nav.platform): Assez stable
|
|
145
|
+
geo: 0.5, // Geo/Langue: Peut changer (VPN, voyage)
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
let weightedMatches = 0;
|
|
149
|
+
let totalWeight = 0;
|
|
150
|
+
|
|
151
|
+
const allKeys = new Set([...map1.keys(), ...map2.keys()]);
|
|
152
|
+
|
|
153
|
+
allKeys.forEach((key) => {
|
|
154
|
+
// On ignore les clés volatiles pour cette comparaison spécifique.
|
|
155
|
+
if (volatileKeys.has(key)) return;
|
|
156
|
+
|
|
157
|
+
// On ne compare que les clés qui ont un poids défini.
|
|
158
|
+
const weight = weights[key];
|
|
159
|
+
// The check must be for `undefined` to allow keys that have a legitimate weight of 0.
|
|
160
|
+
// The previous `!weight` check would incorrectly exclude them, potentially leading to a totalWeight of 0
|
|
161
|
+
// and a similarity score of NaN, which evaluates to 0. This is the fix.
|
|
162
|
+
if (weight === undefined) return;
|
|
163
|
+
|
|
164
|
+
totalWeight += weight; // N'incrémenter que si la clé est pertinente.
|
|
165
|
+
if (map1.get(key) === map2.get(key)) {
|
|
166
|
+
weightedMatches += weight;
|
|
167
|
+
}
|
|
168
|
+
});
|
|
169
|
+
|
|
170
|
+
return totalWeight === 0 ? 0 : weightedMatches / totalWeight;
|
|
171
|
+
}
|
|
161
172
|
}
|