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

      Sunshine And March Vibes (2025 Wallpapers Edition)

      June 3, 2025

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

      June 3, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      June 3, 2025

      How To Prevent WordPress SQL Injection Attacks

      June 3, 2025

      SteelSeries reveals new Arctis Nova 3 Wireless headset series for Xbox, PlayStation, Nintendo Switch, and PC

      June 3, 2025

      The Witcher 4 looks absolutely amazing in UE5 technical presentation at State of Unreal 2025

      June 3, 2025

      Razer’s having another go at making it so you never have to charge your wireless gaming mouse, and this time it might have nailed it

      June 3, 2025

      Alienware’s rumored laptop could be the first to feature NVIDIA’s revolutionary Arm-based APU

      June 3, 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

      easy-live2d – About Make your Live2D as easy to control as a pixi sprite! Live2D Web SDK based on Pixi.js.

      June 3, 2025
      Recent

      easy-live2d – About Make your Live2D as easy to control as a pixi sprite! Live2D Web SDK based on Pixi.js.

      June 3, 2025

      From Kitchen To Conversion

      June 3, 2025

      Perficient Included in Forrester’s AI Technical Services Landscape, Q2 2025

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

      SteelSeries reveals new Arctis Nova 3 Wireless headset series for Xbox, PlayStation, Nintendo Switch, and PC

      June 3, 2025
      Recent

      SteelSeries reveals new Arctis Nova 3 Wireless headset series for Xbox, PlayStation, Nintendo Switch, and PC

      June 3, 2025

      The Witcher 4 looks absolutely amazing in UE5 technical presentation at State of Unreal 2025

      June 3, 2025

      Razer’s having another go at making it so you never have to charge your wireless gaming mouse, and this time it might have nailed it

      June 3, 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

    Hostinger
    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

    SteelSeries reveals new Arctis Nova 3 Wireless headset series for Xbox, PlayStation, Nintendo Switch, and PC

    June 3, 2025
    News & Updates

    The Witcher 4 looks absolutely amazing in UE5 technical presentation at State of Unreal 2025

    June 3, 2025
    Leave A Reply Cancel Reply

    Continue Reading

    ⚡ Weekly Recap: APT Intrusions, AI Malware, Zero-Click Exploits, Browser Hijacks and More

    Security

    CVE-2025-45487 – Linksys E5600 Command Injection Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    Smashing Security podcast #373: iPhone undeleted photos, and stealing Scarlett Johansson’s voice

    Development

    Identity Threat Detection and Response Solution Guide

    Development

    Highlights

    Development

    CISA Details New Malware Used in Ivanti Attacks

    March 31, 2025

    The U.S. Cybersecurity and Information Security Agency (CISA) has issued an advisory detailing a new…

    OpenAI launches next-gen reasoning models with “incredible” coding capabilities

    December 20, 2024

    6 Open Source Website Builders You Need to Know About

    April 4, 2025

    Meet LLaVA-o1: The First Visual Language Model Capable of Spontaneous, Systematic Reasoning Similar to GPT-o1

    November 18, 2024
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

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