如何安装shodan程序

如何安装shodan程序

我有 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 已经安装在大多数渗透和安全 Linux 发行版中,例如 Kali Linux、Parrot Os 和 BlackArch。

要检查您是否有 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.

相关内容