Skip to content

Commit b2086f8

Browse files
authored
Merge pull request #4 from M82-project/BartM82-patch-1
Add InfoRos domain source registration
2 parents de9fb78 + a0f5e21 commit b2086f8

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

modules/Suspicioussitesmanager.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,18 @@ class SuspiciousSitesManager {
143143
});
144144
console.log(` ✓ Source Doppelganger chargée: ${doppelgangerDomains.length} domaines`);
145145
}
146+
147+
// Source 9: InfoRos - noms de domaines
148+
if (typeof infoRosDomains !== 'undefined' && Array.isArray(infoRosDomains)) {
149+
this.registerSource('InfoRos Domains', infoRosDomains, {
150+
name: 'Réseau InfoRos',
151+
description: 'Galaxie de sites web russophones identifiés dans l\'analyse "The GRU\'s Galaxy of Russian-speaking websites"',
152+
organization: 'OpenFacto',
153+
reportUrl: 'https://openfacto.fr/2022/01/27/the-grus-galaxy-of-russian-speaking-websites/',
154+
reportDate: '2022-01-27'
155+
});
156+
console.log(` ✓ Source InfoRos chargée: ${infoRosDomains.length} domaines`);
157+
}
146158

147159
// Avertissement si aucune source n'est chargée
148160
if (this.sources.size === 0) {
@@ -560,4 +572,4 @@ if (typeof window !== 'undefined') {
560572
// Export pour Node.js si nécessaire
561573
if (typeof module !== 'undefined' && module.exports) {
562574
module.exports = SuspiciousSitesManager;
563-
}
575+
}

0 commit comments

Comments
 (0)