<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Osint on Site de Nemo</title><link>https://nemodzilla.xyz/tags/osint/</link><description>Recent content in Osint on Site de Nemo</description><generator>Hugo -- gohugo.io</generator><language>fr</language><lastBuildDate>Thu, 12 Mar 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://nemodzilla.xyz/tags/osint/index.xml" rel="self" type="application/rss+xml"/><item><title>Social Media Investigation Hub [Locked]</title><link>https://nemodzilla.xyz/p/htb-social-media-investigation-hub/</link><pubDate>Thu, 12 Mar 2026 00:00:00 +0000</pubDate><guid>https://nemodzilla.xyz/p/htb-social-media-investigation-hub/</guid><description>&lt;img src="https://nemodzilla.xyz/p/htb-social-media-investigation-hub/images/osint.png" alt="Featured image of post Social Media Investigation Hub [Locked]" /&gt;&lt;h2 id="introduction"&gt;Introduction
&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Challenge Scenario:&lt;/strong&gt;
You&amp;rsquo;ve discovered Alex Morgan is connected to RivalTech and has been conducting fake review campaigns against TechFlow. Now you need to map Alex&amp;rsquo;s complete digital footprint across social media platforms to understand the full scope of this operation and find evidence of coordination with other actors.&lt;/p&gt;
&lt;h2 id="solution"&gt;Solution
&lt;/h2&gt;
&lt;script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js"&gt;&lt;/script&gt;
&lt;div class="flag-protected"&gt;
&lt;div class="flag-locked" id="flag-1"&gt;
&lt;div class="flag-icon"&gt;🚩&lt;/div&gt;
&lt;p class="flag-hint"&gt;
Le flag est protégé par un mot de passe
&lt;/p&gt;
&lt;div class="flag-input-group"&gt;
&lt;input
type="password"
id="flag-input-1"
placeholder="Mot de passe..."
onkeydown="if(event.key==='Enter') unlockFlag('1', '3ddbc1fb4fb9bb0af6c95d6fc3ac64c49c70caddf39c417c088a970e1a9846ee', this.value)"
/&gt;
&lt;button onclick="unlockFlag('1', '3ddbc1fb4fb9bb0af6c95d6fc3ac64c49c70caddf39c417c088a970e1a9846ee', document.getElementById('flag-input-1').value)"&gt;
Déverrouiller
&lt;/button&gt;
&lt;/div&gt;
&lt;p class="flag-error" id="flag-error-1" style="display:none"&gt;
❌ Mot de passe incorrect
&lt;/p&gt;
&lt;/div&gt;
&lt;div class="flag-content" id="flag-content-1" style="display:none"&gt;
&lt;div class="flag-revealed"&gt;
&lt;span class="flag-label"&gt;🏴 Flag&lt;/span&gt;
&lt;p&gt;&lt;strong&gt;Question 1:&lt;/strong&gt; Quel est le vrai nom de la personne derrière le compte TechReviewer2024 ? &lt;strong&gt;Alex Morgan&lt;/strong&gt; (Le profil ConnectPro révèle le nom réel dans le titre professionnel).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Question 2:&lt;/strong&gt; Pour quelle entreprise Alex Morgan travaillait-il précédemment ? &lt;strong&gt;RivalTech Inc.&lt;/strong&gt; (Marketing Specialist de janv. 2021 à déc. 2023 selon ConnectPro).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Question 3:&lt;/strong&gt; Quel est le nom de code de l&amp;rsquo;opération mentionné sur ForumHub ? &lt;strong&gt;operation_social_storm_2024&lt;/strong&gt; (Cité dans le post &amp;lsquo;XyloPhone Pro Campaign Coordination&amp;rsquo;).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Question 4:&lt;/strong&gt; En quel mois et année la plupart des comptes suspects ont-ils été créés ? &lt;strong&gt;February 2024&lt;/strong&gt; (Visible via la liste d&amp;rsquo;abonnements ChirpNet).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Question 5:&lt;/strong&gt; Quel produit est spécifiquement ciblé par la campagne de dénigrement ? &lt;strong&gt;XyloPhone Pro&lt;/strong&gt; (Confirmé par les points d&amp;rsquo;attaque détaillés sur ForumHub).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Question 6:&lt;/strong&gt; Quel rôle TechReviewer2024 a-t-il dans le subreddit TechReviews ? &lt;strong&gt;moderator&lt;/strong&gt; (Indiqué sur son profil ForumHub).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Question 7:&lt;/strong&gt; Quel est le parcours scolaire d&amp;rsquo;Alex Morgan ? &lt;strong&gt;University of California, Berkeley&lt;/strong&gt; (Bachelor of Science en Marketing, 2017-2021).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Question 8:&lt;/strong&gt; Combien de relations Alex Morgan a-t-il sur ConnectPro ? &lt;strong&gt;89&lt;/strong&gt; (Chiffre visible sur son profil professionnel).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Question 9:&lt;/strong&gt; Quel est le karma total de u/TechReviewer2024 sur ForumHub ? &lt;strong&gt;1247&lt;/strong&gt; (Karma accumulé via ses nombreux posts récents).&lt;/p&gt;
&lt;p&gt;&lt;code&gt;HTB{alexmorgan_operationsocialstorm2024_february2024}&lt;/code&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;script&gt;
function unlockFlag(id, expectedHash, password) {
const hash = CryptoJS.SHA256(password).toString();
if (hash === expectedHash) {
document.getElementById('flag-' + id).style.display = 'none';
document.getElementById('flag-content-' + id).style.display = 'block';
} else {
const err = document.getElementById('flag-error-' + id);
err.style.display = 'block';
setTimeout(() =&gt; err.style.display = 'none', 2000);
}
}
&lt;/script&gt;</description></item></channel></rss>