我有Kali,我想安装shodan,但是它给了我一个错误消息:
$ easy_install shodan
-bash: easy_install: command not found你能告诉我我能做什么吗?
发布于 2019-04-13 13:54:52
正如@ctl所指出的,您没有安装easy_install。
你必须做:
sudo apt-get install python-setuptools然后你就可以跑了:
easy_install shodan我早些时候在评论中指出的另一种选择也在做:
sudo apt-get install pip
pip install shodan发布于 2020-06-25 06:02:50
Shodan已经安装在大多数渗透和安全的Linux发行版中,比如Kali、Parrot和BlackArch。
要检查你是否有肖丹,只需在终点站输入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.https://unix.stackexchange.com/questions/512255
复制相似问题