<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: OpenCV</title>
    <description>The latest articles on DEV Community by OpenCV (@the_king89).</description>
    <link>https://dev.to/the_king89</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3586005%2Fe2d7e383-5355-4d5c-9071-37bd92ecaee6.png</url>
      <title>DEV Community: OpenCV</title>
      <link>https://dev.to/the_king89</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/the_king89"/>
    <language>en</language>
    <item>
      <title>RIP Holehe: Why User-Scanner is the New King of Email OSINT 👑</title>
      <dc:creator>OpenCV</dc:creator>
      <pubDate>Sat, 21 Feb 2026 15:47:07 +0000</pubDate>
      <link>https://dev.to/the_king89/rip-holehe-why-user-scanner-is-the-new-king-of-email-osint-2cff</link>
      <guid>https://dev.to/the_king89/rip-holehe-why-user-scanner-is-the-new-king-of-email-osint-2cff</guid>
      <description>&lt;h1&gt;
  
  
  Why Holehe is Dead and Why You Should Switch to User-Scanner 🔍
&lt;/h1&gt;

&lt;p&gt;If you’ve been in the OSINT space for a while, you know &lt;strong&gt;Holehe&lt;/strong&gt;. It was the gold standard for email lookups. But let’s be real: Holehe hasn't seen a major update in years, many of its modules are broken, and it frequently hits rate limits or returns false positives.&lt;/p&gt;

&lt;p&gt;In 2026, it’s time to move on. Enter &lt;strong&gt;user-scanner&lt;/strong&gt;—the modern, lightweight, and actively maintained successor that does everything Holehe did, but better.&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ Key Features of User-Scanner
&lt;/h2&gt;

&lt;p&gt;User-Scanner isn't just a replacement; it’s an upgrade. It combines the best of &lt;strong&gt;Holehe&lt;/strong&gt; (email scanning) and &lt;strong&gt;Sherlock&lt;/strong&gt; (username scanning) into one streamlined tool.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;2-in-1 Dual Scanning:&lt;/strong&gt; Check email registrations and username availability in a single command.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Smart Permutations:&lt;/strong&gt; Automatically generates "wildcard" variations of usernames (e.g., adding suffixes) to find hidden or secondary accounts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Active Module Updates:&lt;/strong&gt; Unlike Holehe, User-Scanner is actively maintained to fix modules as soon as platforms change their login or registration flows.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Advanced Proxy Support:&lt;/strong&gt; Includes a built-in &lt;code&gt;--validate-proxies&lt;/code&gt; flag to filter out dead proxies before you start your scan.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Clean Exporting:&lt;/strong&gt; Native support for &lt;strong&gt;JSON&lt;/strong&gt; and &lt;strong&gt;CSV&lt;/strong&gt; formats, making it easy to pipe data into other tools or reports.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Developer Library Mode:&lt;/strong&gt; You can import it directly into your Python projects using &lt;code&gt;user_scanner.core&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🚀 Quick Start
&lt;/h2&gt;

&lt;p&gt;Getting started is faster than setting up a virtual environment (though you should still use one!).&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Installation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;user-scanner
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. The "Better Than Holehe" Scan
&lt;/h3&gt;

&lt;p&gt;Replace your old Holehe workflow with this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;user-scanner &lt;span class="nt"&gt;-e&lt;/span&gt; &lt;span class="s2"&gt;"target_email@gmail.com"&lt;/span&gt; &lt;span class="nt"&gt;-v&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Bulk Scanning (A Feature Holehe Lacked)
&lt;/h3&gt;

&lt;p&gt;Have a list of 100 emails? No problem:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;user-scanner &lt;span class="nt"&gt;-ef&lt;/span&gt; emails.txt &lt;span class="nt"&gt;-o&lt;/span&gt; results.json
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Library mode for email_scan
&lt;/h3&gt;

&lt;p&gt;Only available for &lt;code&gt;user-scanner&amp;gt;=1.2.0&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;See full usage (eg. category checks, full scan) guide &lt;a href="https://github.com/kaifcodec/user-scanner/blob/main/docs/USAGE.md" rel="noopener noreferrer"&gt;library usage&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Email scan example (single module):
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;
&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;asyncio&lt;/span&gt;
&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;user_scanner.core&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;engine&lt;/span&gt;
&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;user_scanner.email_scan.dev&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;github&lt;/span&gt;

&lt;span class="k"&gt;async&lt;/span&gt; &lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;main&lt;/span&gt;&lt;span class="p"&gt;():&lt;/span&gt;
    &lt;span class="c1"&gt;# Engine detects 'email_scan' path -&amp;gt; returns "Registered" status
&lt;/span&gt;    &lt;span class="n"&gt;result&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="n"&gt;engine&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;check&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;github&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;test@gmail.com&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="n"&gt;json_data&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;result&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;to_json&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="c1"&gt;# returns JSON output
&lt;/span&gt;    &lt;span class="n"&gt;csv_data&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;result&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;to_csv&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;   &lt;span class="c1"&gt;# returns CSV output
&lt;/span&gt;    &lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;json_data&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;             &lt;span class="c1"&gt;# prints the json data
&lt;/span&gt;
&lt;span class="n"&gt;asyncio&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;run&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;main&lt;/span&gt;&lt;span class="p"&gt;())&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"email"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"test@gmail.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"category"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Dev"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"site_name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Github"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"status"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Registered"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://github.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"reason"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;""&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  💀 Why "Holehe" is Dead
&lt;/h2&gt;

&lt;p&gt;Holehe relied on specific password-reset and registration endpoints that many platforms (like X/Twitter and Instagram) have since hardened or changed. Without active maintenance, a tool like Holehe becomes a "false negative" machine. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;User-Scanner&lt;/strong&gt; uses updated logic, better error handling and modern libraries like &lt;code&gt;httpx&lt;/code&gt; to handle these requests more reliably and faster than the older &lt;code&gt;requests&lt;/code&gt; or &lt;code&gt;trio&lt;/code&gt; based implementations.&lt;/p&gt;




&lt;h2&gt;
  
  
  🛡️ Use Responsibly
&lt;/h2&gt;

&lt;p&gt;This tool is built for &lt;strong&gt;authorized security research&lt;/strong&gt;, bug bounty hunting, and digital footprint audits. Always ensure your investigations comply with local laws and the Terms of Service of the platforms being scanned.&lt;/p&gt;




&lt;h2&gt;
  
  
  📈 Conclusion
&lt;/h2&gt;

&lt;p&gt;If your OSINT toolkit still relies on Holehe, you're likely missing half the picture. Switch to User-Scanner for more accurate data and a much better developer experience.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Check it out on GitHub:&lt;/strong&gt; &lt;a href="https://github.com/kaifcodec/user-scanner" rel="noopener noreferrer"&gt;kaifcodec/user-scanner&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Are you still holding onto legacy tools, or have you made the switch? Let's talk in the comments!&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>osint</category>
      <category>cybersecurity</category>
      <category>hacking</category>
    </item>
  </channel>
</rss>
