Man
Professional
- Messages
- 3,085
- Reaction score
- 623
- Points
- 113
Hello everyone, dear friends!
We have mentioned the hacker search engine Shodan on the channel many times, but we have always talked about using the Shodan website. In this article, we will show you how to install and use Shodan in the Kali Linux terminal.
To which I received an error. The search engine refuses to work without the API, which can be found on the site, in your profile.
That's all for today. I recommend you use Shodan in the Kali terminal, because it's much more convenient than the site and saves a lot of time.
We have mentioned the hacker search engine Shodan on the channel many times, but we have always talked about using the Shodan website. In this article, we will show you how to install and use Shodan in the Kali Linux terminal.
Installing Shodan on Kali Linux
Before installing Shodan, you need to install dependencies.- To do this, run the following commands:
Code:
sudo apt install python python3 python-pip python3-pip
sudo apt install python-setuptools python3-setuptools

- Now let's install Shodan:
Code:
sudo pip install shodan

- After installation, I decided to test it and executed the command:
Code:
shodan count microsoft iis 6.0
To which I received an error. The search engine refuses to work without the API, which can be found on the site, in your profile.

- Now we go back and add the API using the command:
Code:
shodan init key_api

Using Shodan in Kali Linux Terminal
- To scan a specific IP address, use the command:
Code:
shodan scan submit --force IP

- To search for a specific host:
Code:
shodan host IP

- Everything else can be found in the help.
That's all for today. I recommend you use Shodan in the Kali terminal, because it's much more convenient than the site and saves a lot of time.