Automater – IP and URL OSINT Tool For Analysis
Last Updated :
17 Oct, 2021
OSINT processes on the IP addresses and Domains are be performed using automated tools. Automater is a fully automated tool that can perform OSINT search on IP addresses, MD5 Hash, and also Domain Addresses.
Automater tool returns the relevant results from trusted sources which are IPvoid.com, Robtex.com, Fortiguard.com, unshorten.me, Urlvoid.com, Labs.alienvault.com, ThreatExpert, VxVault, and VirusTotal. Automater tool is developed in the Python Language and available on the GitHub platform. As it's available on GitHub, it's free and open-source to use.
Note: Make Sure You have Python Installed on your System, as this is a python-based tool. Click to check the Installation process: Python Installation Steps on Linux
Installation of Automater Tool on Kali Linux OS
Step 1: Use the following command to install the tool in your Kali Linux operating system.
git clone https://github.com/1aN0rmus/TekDefense-Automater.git
Step 2: Now use the following command to move into the directory of the tool. You have to move in the directory in order to run the tool.
cd TekDefense-Automater
Step 3: Now you are in the directory of the tool. Use the following command to run the tool.
./Automater.py -h

Working with Automater Tool on Kali Linux OS
Example 1: Scanning MD5 Hash
./Automater.py 0978D1D116B57F00BBBE31E2A6861947
In this example, we are getting the information about the MD5 hash which is provided as an input.
We have got the results of our scan.
Example 2: Scanning Domain Address
./Automater.py geeksforgeeks.org
In this example, we are scanning the domain address geeksforgeeks.org.
Results are displayed in the below screenshot.
Example 3: Scanning IP Address
./Automater.py 192.168.144.130
In this example, we are scanning the IP address 192.168.144.130.
We have got the results.
Example 4: This option will output the results to a file
./Automater.py 192.168.144.130 -o results.txt
Results are saved in .txt formatted file.
Example 5: This option will output the results to an HTML file
./Automater.py 192.168.144.130 -w results.html
Results are saved and displayed from the .html formatted file.
Example 6: This option will output the results to a CSV file
./Automater.py 192.168.144.130 -c results.csv
Results are saved and displayed from .csvformatted file.
Example 7: This will change the delay to the inputted seconds
./Automater.py 192.168.144.130 -d 3
Example 8: This option will only run the target against a specific source engine to pull associated domains. Options are defined in the name attribute of the site element in the XML configuration file. This can be a list of names separated by a semicolon.
./Automater.py 192.168.144.130 --source robtex,vtpDNSIP,ipvoid
We have displayed the output by selecting only the specified sources.
Example 9: This option will set a proxy to use
./Automater.py 192.168.144.130 -p/proxy 127.0.0.1
Similar Reads
BlackDragon - Advanced Automation Tool For Web-Recon
Information Gathering is the process of collecting the relevant information about the target domain for increasing the scope of testing. This information consists of Subdomain Enumeration, Live Host identification, etc. This phase can be completed in an automated way. Black-Dragon is the tool used i
2 min read
Kali Linux - Vulnerability Analysis Tools
Vulnerability Analysis is one of the most important phases of Hacking. It is done after Information Gathering and is one of the crucial steps to be done while designing an application. The cyber-world is filled with a lot of vulnerabilities which are the loopholes in a program through which hacker e
4 min read
IP Rover - OSINT tool to get information of any IP address
IP Rover is a free and open-source tool available on GitHub. IP Rover is one of the famous tools to find information about an IP address and domain. It is used by security researchers and penetration testers in the early stages of penetration testing and reconnaissance. IP Rover is an (OSINT) which
2 min read
SpiderFoot â A Automate OSINT Framework in Kali Linux
Spiderfoot is a free and open-source tool available on Github. This tool is a framework written in the python programming language. You must have python installed in your Kali Linux operating system to use this framework. Spiderfoot is used for reconnaissance. Spiderfoot uses different modules for i
5 min read
Crips - Linux Tool for Enumeration
DNS Reconnaissance or Enumeration is the phase or process of collecting all the information about the DNS servers and their associated records of a target domain organization. An organization may consist of internal and external DNS Servers that can reveal usernames, computer names, and many more. C
4 min read
Mr.Holmes - Information Gathering OSINT Tool
Mr.Holmes is a free and open-source tool available on GitHub. Mr.Holmes is used for information gathering. Mr.Holmes is a tool that is used to perform reconnaissance on domains, usernames, and phone numbers. Mr.Holmes works on open-source technology. Mr.Holmes gathers all information that is open so
2 min read
DNSTwist - OSINT Tool in Linux
DNSTwist allows one to detect phishing, typo squatters, and attack domains that are based on an inputted domain. If you are an owner of a site or have the responsibility of your company's domain management and brand safety, Dnstwist can be of great use in seeing sites that are trying to harm other p
2 min read
Pureblood - Information Gathering and Security Auditing Tool
Information Collection about the target host is all about collecting or gathering the information of the internal structure of the target domain, which can help the testers perform a vulnerability assessment. Pureblood is an automated script that can be beneficial to penetration testers in the proce
4 min read
TCP flow Analyze and Debug Network Traffic in Linux
TCPflow is a completely free and open-source tool used for the analysis of network traffic on Linux and Unix systems. The data which is transferred during the connection is stored in a file by TCPflow in a systematic format for later study. TCPflow is almost the same as its counterparts such as Wire
5 min read
DNSrr - Tool to Enumerate Juicy Information from DNS
DNS enumeration is the process of locating all the DNS servers and their corresponding records for an organization. In some cases, Penetration Tester or Bug Bounty Hunter cannot bypass actual DNS addresses. It is mask under the CDN (Content Delivery Network) like Cloudflare, Google CDN, StackPath, e
3 min read