ショーダンプログラムのインストール方法

ショーダンプログラムのインストール方法

Kali Linuxがあり、それをインストールしたいのですが、shodanエラーメッセージが表示されます。

$ easy_install shodan
-bash: easy_install: command not found

何ができるか教えてもらえますか?

答え1

@ctl-alt-delorが指摘したように、まだインストールされていませんeasy_install

以下を行う必要があります。

sudo apt-get install python-setuptools

その後、次を実行できます。

easy_install shodan

以前のコメントで指摘した別のオプションは、同じことを行います。

sudo apt-get install pip
pip install shodan

答え2

Shodanは、Kali Linux、Parrot Os、BlackArchなどのほとんどの侵入およびセキュリティLinuxディストリビューションにすでにインストールされています。

Shodanがあるかどうかを確認するには、Shodan端末に入力するだけです。

次の結果が表示されます。

Usage: shodan [OPTIONS] COMMAND [ARGS]...

Options:
  -h, --help  Show this message and exit.

Commands:
  alert       Manage the network alerts for your account
  convert     Convert the given input data file into a different format.
  count       Returns the number of results for a search
  data        Bulk data access to Shodan
  domain      View all available information for a domain
  download    Download search results and save them in a compressed JSON...
  honeyscore  Check whether the IP is a honeypot or not.
  host        View all available information for an IP address
  info        Shows general information about your account
  init        Initialize the Shodan command-line
  myip        Print your external IP address
  org         Manage your organization's access to Shodan
  parse       Extract information out of compressed JSON files.
  radar       Real-Time Map of some results as Shodan finds them.
  scan        Scan an IP/ netblock using Shodan.
  search      Search the Shodan database
  stats       Provide summary information about a search query
  stream      Stream data in real-time.
  version     Print version of this tool.

関連情報