Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion modules/Suspicioussitesmanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,18 @@ class SuspiciousSitesManager {
});
console.log(` ✓ Source Doppelganger chargée: ${doppelgangerDomains.length} domaines`);
}

// Source 9: InfoRos - noms de domaines
if (typeof infoRosDomains !== 'undefined' && Array.isArray(infoRosDomains)) {
this.registerSource('InfoRos Domains', infoRosDomains, {
name: 'Réseau InfoRos',
Copy link

Copilot AI Oct 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Extra space after the colon in 'name: ' property. Should be 'name: ' (single space) to match the formatting of other source registrations.

Copilot uses AI. Check for mistakes.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot open a new pull request to apply changes based on this feedback

description: 'Galaxie de sites web russophones identifiés dans l\'analyse "The GRU\'s Galaxy of Russian-speaking websites"',
organization: 'OpenFacto',
reportUrl: 'https://openfacto.fr/2022/01/27/the-grus-galaxy-of-russian-speaking-websites/',
reportDate: '2022-01-27'
});
console.log(` ✓ Source InfoRos chargée: ${infoRosDomains.length} domaines`);
}

// Avertissement si aucune source n'est chargée
if (this.sources.size === 0) {
Expand Down Expand Up @@ -560,4 +572,4 @@ if (typeof window !== 'undefined') {
// Export pour Node.js si nécessaire
if (typeof module !== 'undefined' && module.exports) {
module.exports = SuspiciousSitesManager;
}
}
Loading