<?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: Kristina</title>
    <description>The latest articles on DEV Community by Kristina (@kristinasabitova).</description>
    <link>https://dev.to/kristinasabitova</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%2F3932050%2Fa9b44489-9436-48a9-9598-843e70bb9797.jpg</url>
      <title>DEV Community: Kristina</title>
      <link>https://dev.to/kristinasabitova</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kristinasabitova"/>
    <language>en</language>
    <item>
      <title>DOMINI Suite: how I built two OSINT tools to analyze domains and IPs from scratch</title>
      <dc:creator>Kristina</dc:creator>
      <pubDate>Sat, 16 May 2026 10:43:13 +0000</pubDate>
      <link>https://dev.to/evolve-space/domini-suite-how-i-built-two-osint-tools-to-analyze-domains-and-ips-from-scratch-4bm7</link>
      <guid>https://dev.to/evolve-space/domini-suite-how-i-built-two-osint-tools-to-analyze-domains-and-ips-from-scratch-4bm7</guid>
      <description>&lt;p&gt;When I was assigned an OSINT practice project, I knew from the start that I wanted to build something using free tools — no paid APIs, no services with rate limits, nothing that required signing up or paying for a subscription.&lt;/p&gt;

&lt;p&gt;The result was the &lt;strong&gt;DOMINI Suite&lt;/strong&gt; — two complementary tools that map the attack surface of domains and IPs using only public information and open source libraries: nmap, dnspython, python-whois, ip-api.com, AbuseIPDB and AlienVault OTX on their free tiers. The only exception is LeakRadar, which requires a paid subscription for API access, but the suite implements an automatic fallback using Google Dorks on Pastebin that works with no key at all.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem I wanted to solve
&lt;/h2&gt;

&lt;p&gt;I wanted to automate the full infrastructure reconnaissance workflow into two tools that worked together naturally.&lt;/p&gt;

&lt;p&gt;That workflow — which manually means opening mxtoolbox, whois.domaintools.com, abuseipdb.com and Google separately — should be executable with a single command and end with a visual report ready to deliver.&lt;/p&gt;

&lt;h2&gt;
  
  
  The two tools
&lt;/h2&gt;

&lt;h3&gt;
  
  
  DOMINUS — Domain Intelligence &amp;amp; Risk Scoring
&lt;/h3&gt;

&lt;p&gt;Given a domain, DOMINUS runs six passive reconnaissance phases:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;WHOIS&lt;/strong&gt; — registrar, registrant, expiration dates&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DNS&lt;/strong&gt; — A, MX, NS, SPF, DMARC, DKIM records&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Subdomains&lt;/strong&gt; — passive enumeration via Certificate Transparency logs (crt.sh)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ports&lt;/strong&gt; — open TCP services via nmap&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;HTTP Headers&lt;/strong&gt; — audit of CSP, HSTS, X-Frame-Options, Referrer-Policy, Permissions-Policy&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LeakRadar&lt;/strong&gt; — credential leak search on Pastebin via Google Dorks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The most interesting finding during testing was the DMARC analysis. A domain with &lt;code&gt;p=none&lt;/code&gt; can be freely spoofed for phishing — emails from &lt;code&gt;ceo@company.com&lt;/code&gt; reach inboxes without any authentication failure. DOMINUS detects it and explains it in the report.&lt;/p&gt;

&lt;h3&gt;
  
  
  SENTINEL — IP Threat Intelligence
&lt;/h3&gt;

&lt;p&gt;DOMINUS extracts IPs from the target's DNS records. Those IPs go directly to SENTINEL, which runs six more phases:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Geolocation&lt;/strong&gt; — country, city, ASN, ISP via ip-api.com (no key required)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Abuse&lt;/strong&gt; — report history, confidence score and attack categories via AbuseIPDB&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Threat feeds&lt;/strong&gt; — presence in AlienVault OTX pulses&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ports&lt;/strong&gt; — exposed TCP services&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cloud detection&lt;/strong&gt; — identifies if the IP belongs to AWS, Azure, GCP or Cloudflare&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tor detection&lt;/strong&gt; — real-time lookup against the live Tor exit node list&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When we analyzed &lt;code&gt;185.220.101.1&lt;/code&gt; as a test target, SENTINEL immediately detected it as an active Tor exit node with 143 abuse reports — and generated specific recommendations: block full Tor exit node ranges, not just that IP, and implement MFA because brute force via Tor is resistant to IP-based blocking.&lt;/p&gt;

&lt;h2&gt;
  
  
  The combined workflow
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;DOMINUS(domain.com) → DNS → target IPs
                              ↓
                    SENTINEL(IP 1) → provider · country · Score X/100
                    SENTINEL(IP 2) → provider · country · Score X/100
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In tests against a real domain (with authorization), the combined analysis revealed that the infrastructure was clean and well-hosted in Europe — two servers at known European providers, no abuse history, only ports 80 and 443 open. The only real risk was in the DNS configuration: DMARC in monitor mode and SPF with soft-fail. The risk wasn't in the servers — it was in the email configuration.&lt;/p&gt;

&lt;p&gt;That kind of nuanced conclusion is exactly what separates a professional analysis from a simple lookup.&lt;/p&gt;

&lt;h2&gt;
  
  
  Architecture: what mattered most to me
&lt;/h2&gt;

&lt;p&gt;Both tools share the same design pattern. Every module exposes a single function &lt;code&gt;run(target) -&amp;gt; dict&lt;/code&gt;. The engine orchestrates the phases, isolates failures per module, and feeds the scorer. The scorer calculates the score with declarative weights and explains every point in the report.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Target
  └── Module A → run(target) → dict
  └── Module B → run(target) → dict
  └── Engine → Scorer → Generator → standalone HTML
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The final report is a single &lt;code&gt;.html&lt;/code&gt; file with all CSS and JS inline — open it in any browser, send it to a client, or submit it to a professor with no dependencies. It includes an animated SVG score ring, a findings table with severity badges, numbered actionable recommendations, an interactive geolocation map (SENTINEL), and a language switcher between Spanish and Russian.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I learned
&lt;/h2&gt;

&lt;p&gt;The most valuable lesson was understanding how much passive reconnaissance reveals without touching anything. Using only public information — DNS records, certificate logs, HTTP headers, abuse lists — you can build a complete risk profile of any organization.&lt;/p&gt;

&lt;p&gt;I also learned that modular architecture matters from the start. Adding LeakRadar to DOMINUS after everything else was built meant creating one new file and registering it — nothing else needed to change.&lt;/p&gt;

&lt;p&gt;Next steps: full IP range scanning in SENTINEL, Shodan API integration, and a local web interface to run scans without using the terminal.&lt;/p&gt;

&lt;h2&gt;
  
  
  Repositories
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;DOMINUS&lt;/strong&gt; → &lt;a href="https://github.com/KristinaSabitova/dominus" rel="noopener noreferrer"&gt;github.com/KristinaSabitova/dominus&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SENTINEL&lt;/strong&gt; → &lt;a href="https://github.com/KristinaSabitova/sentinel" rel="noopener noreferrer"&gt;github.com/KristinaSabitova/sentinel&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;This project is part of my cybersecurity portfolio and was developed during the Master in Cybersecurity &amp;amp; AI at &lt;a href="https://evolve.es/" rel="noopener noreferrer"&gt;Evolve Academy&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>python</category>
      <category>infosec</category>
      <category>networking</category>
    </item>
  </channel>
</rss>
