Beeswarm 蜜罐设置

Beeswarm 蜜罐设置

我正在开发 Beeswarm 的 POC,在连接无人机时遇到了问题。对于基本设置,我的服务器运行良好,我可以通过以下方式访问它https://XXXX:5000(由于接受默认值,我收到证书错误)。当我在同一个子网上设置另一台服务器时,我运行以下命令并收到错误。

user@beeswarm-sensor1:/opt/drone_workdir$ sudo beeswarm --config https://X.X.X.X:5000/ws/drone/add/0f74fe
2014-09-03 16:12:24,681 (root) Initializing BeeSwarm version 0.4.17
2014-09-03 16:12:24,688 (requests.packages.urllib3.connectionpool) Starting new HTTPS connection (1): 10.6.13.238
/usr/local/lib/python2.7/dist-packages/requests/packages/urllib3/connectionpool.py:730: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html (This warning will only appear once by default.)
  InsecureRequestWarning)
2014-09-03 16:12:24,704 (root) Error while extracting configuration from https://X.X.X.X:5000/ws/drone/add/0f74fe, please make sure that the correct url was provided.

我假设这是由于证书错误造成的,但我在 Beeswarm 的文档中没有看到任何关于其他人遇到此问题的参考。由于这只是一个快速 POC,我不想处理创建证书之类的事情。

谢谢,埃里克

答案1

我认为问题出在我以 sudo 方式运行 beeswarm 上。当我以非特权用户身份运行它时,它运行正常。我为这篇帖子道歉。

相关内容