Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      Sunshine And March Vibes (2025 Wallpapers Edition)

      June 2, 2025

      The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

      June 2, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      June 2, 2025

      How To Prevent WordPress SQL Injection Attacks

      June 2, 2025

      The Alters: Release date, mechanics, and everything else you need to know

      June 2, 2025

      I’ve fallen hard for Starsand Island, a promising anime-style life sim bringing Ghibli vibes to Xbox and PC later this year

      June 2, 2025

      This new official Xbox 4TB storage card costs almost as much as the Xbox SeriesXitself

      June 2, 2025

      I may have found the ultimate monitor for conferencing and productivity, but it has a few weaknesses

      June 2, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      May report 2025

      June 2, 2025
      Recent

      May report 2025

      June 2, 2025

      Write more reliable JavaScript with optional chaining

      June 2, 2025

      Deploying a Scalable Next.js App on Vercel – A Step-by-Step Guide

      June 2, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      The Alters: Release date, mechanics, and everything else you need to know

      June 2, 2025
      Recent

      The Alters: Release date, mechanics, and everything else you need to know

      June 2, 2025

      I’ve fallen hard for Starsand Island, a promising anime-style life sim bringing Ghibli vibes to Xbox and PC later this year

      June 2, 2025

      This new official Xbox 4TB storage card costs almost as much as the Xbox SeriesXitself

      June 2, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Learning Resources»Findomain — All Information of Domain

    Findomain — All Information of Domain

    May 31, 2025

    As penetration tester we encounter with web-servers a lot. Before doing any attacks we first study how it is? and gather various information on it which is called “information gathering” sometime it called “reconnaissance” or “recon” in short in cyber security term.

    To do recon we need various tools and websites. We go there and put our target domain or IP and try to gather info about it. But on our this article we are going to learn how we can easily gather information from one tool. This tool is called Findomain. Now this tool will use services we need by it’s own and show us the results. It’s also capable of subdomain monitoring, alerts via Discord, Slack and Telegram, multiple
    API Keys. Lets install Findomain on our Kali Linux system and try to learn about it’s use.

    Findomain on Kali Linux

    Installing Findomain on Kali Linux

    Nah, we should not make a headline about it, it’s very simple, but we have to do it for better Search Engine Optimization. We just need to run following command to install Findomain on our updated Kali Linux system.

    sudo apt install findomain -y

    After applying the above command it will prompt for password of current user. Then the installation of findomain will start on our Kali Linux, as we can see in the following screenshot:

    installing findomain on kali linux

    The installation process will not take a minute, depending on our internet speed and system configuration.

    Using Findomain on Kali Linux

    Before run findomain against any target as always we will take a look on it’s options by running following command:

    findomain -h

    We can see the output in the following screenshot:

    help options for findomain

    Now we can set various platfrom’s API on findomain. For an example we are going to demonstrate how we can set SecurityTrails API on this tool. First we open SecurityTrails website.

    securitytrails homepage

    Then we need to click on “Sign Up Free” on the top right corner. Then we have the “SignUp” page as we can see in the following:

    securitytrails signup

    Here we can upload our details and sign up here. They will verify our email so we need to use original email or temp mail. After the mail verification is complete we can see our accounts page as following:

    securitytrails my account page

     Here we need to click on the “API” section. Then “API Keys”, and we get our API Key, as shown in the following screenshot (Our API Key is hidden due to security reasons):

    SecurityTrails API key

    Here one thing to remember on the basic Free plan of SecurityTrails we can use the API keys 50 times a month.

    Okey, Now we need to set it on our Findomain, we just have to copy our SecurityTrails API key and run the following command on our terminal:

    findomain_securitytrails_token=YourAccessToken

    We can see the above thing on the following screenshot:

    securitytrails API key seiing on findomain on Kali Linux

     Just like this we can add various API’s on our Findomain tool. Here we can know more about it.

    Now run Findomain against a target for an example here we are taking Google (hope they will not mind) and run the following command:

    findomain_securitytrails_token="YourAccessToken" && findomain -t google.com

    The results are as following screenshot:

    Hostinger
    findomain working on Kali Linux

    There are many type of uses this tools offers, some of them are as following:

    1. Make a search of subdomains and print the info in the screen:

    findomain -t example.com

    2. Make a search of subdomains and export the data to a output file (the output file name in it case is example.com.txt):

    findomain -t example.com -o

    3. Make a search of subdomains and export the data to a custom output file name:

    findomain -t example.com -u example.txt

    4. Make a search of only resolvable subdomains:

    findomain -t example.com -r

    5. Make a search of only resolvable subdomains, exporting the data to a custom output file.

    findomain -t example.com -r -u example.txt

    6. Search subdomains from a list of domains passed using a file (we need to put a domain in every line into the file):

    findomain -f file_with_domains.txt

    7. Search subdomains from a list of domains passed using a file (we need to put a domain in every line into the file) and save all the resolved domains into a custom file name:

    findomain -f file_with_domains.txt -r -u multiple_domains.txt

    8. Query the Findomain database created with Subdomains Monitoring.

    findomain -t example.com --query-database

    9. Query the Findomain database created with Subdomains Monitoring and save results to a custom filename.

    findomain -t example.com --query-database -u subdomains.txt

    10. Import subdomains from several files and work with them in the Subdomains Monitoring process:

    findomain --import-subdomains file1.txt file2.txt file3.txt -m -t example.com

    Findomain notifications on Telegram/Discord/Slack

    Findomain was one of the first tools to use a relational database for tracking subdomains. It can manage millions or even trillions of subdomains, as well as thousands of them at once.

    First, we need to choose how we want to receive notifications. The options include Discord, Slack, or Telegram. Here, in the official documentations we can easily learn how to set it up for Discord, Slack and Telegram webhook.

    There are some of the uses. We can know about more uses on Findomain’s GitHub page.

    This is how we can install and run Findomain on our Kali Linux, which is the fastest and complete solution for domain recognition. Supports
    screenshoting, port scan, HTTP check, data import from other tools,
    subdomain monitoring, alerts via Discord, Slack and Telegram, multiple
    API Keys for sources and much more.

    Enjoy our articles? Make sure to follow us on Twitter and GitHub, we post article updates there. To join our KaliLinuxIn family, join our Telegram Group & Whatsapp Channel. We are striving to build a community for  Linux and  cybersecurity. For anything we always happy to help everyone on the comment section. As we know our comment section is always open to everyone. We read each and every comment and we always reply.

    Source: Read More

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleSpinbetter in Bangladesh: Best Sports & Casino Platform
    Next Article Windows 11 24H2 PCs will finally deliver the best of USB-C, just like MacBook

    Related Posts

    News & Updates

    The Alters: Release date, mechanics, and everything else you need to know

    June 2, 2025
    News & Updates

    I’ve fallen hard for Starsand Island, a promising anime-style life sim bringing Ghibli vibes to Xbox and PC later this year

    June 2, 2025
    Leave A Reply Cancel Reply

    Continue Reading

    This tiny Bluetooth dongle gave me the ultimate in-flight movie experience

    News & Updates

    MIT’s McGovern Institute is shaping brain science and improving human lives on a global scale

    Artificial Intelligence

    Distribution Release: AxOS 25.06

    News & Updates

    Sam Altman jokingly teases OpenAI’s “social app” as Meta AI plans standalone app launch

    Operating Systems

    Highlights

    Development

    Deal for the Brits: My preferred PC gaming handheld of choice is currently a tidy £100 cheaper

    June 28, 2024

    Lenovo’s Legion Go is a great PC gaming handheld, with a huge and versatile array…

    The 2025 Work Trend Index Annual Report: The Year the Frontier Firm Is Born

    April 23, 2025

    Bill Gates says the late Steve Jobs recommended taking LSD to make Microsoft products more appealing — matching Apple’s flair: “Look, I got the wrong batch”

    February 10, 2025

    CVE-2025-4487 – iSourcecode Gym Management System SQL Injection Vulnerability

    May 9, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.