banner
NEWS LETTER

Nemo_go

Scroll down

项目地址

Nemo_go

项目介绍

Nemo是用来进行自动化信息收集的一个简单平台,通过集成常用的信息收集工具和技术,实现对内网及互联网资产信息的自动收集,提高隐患排查和渗透测试的工作效率。

搭建流程:

  1. 阿里云购买Ubuntu 18.04服务器

  2. 连接服务器

    1
    2
    3
    apt-get update
    apt-get install docker.io docker-compose -y
    cd /root/
  3. 找到这个https://github.com/hanc00l/nemo_go/releases/download/v2.12.0/nemo_linux_amd64.tar
    复制文件地址

    1
    wget https://github.com/hanc00l/nemo_go/releases/download/v2.12.0/nemo_linux_amd64.tar
  4. 先启动试试

    1
    2
    mkdir nemo;tar xvf nemo_linux_amd64.tar -C nemo;cd nemo
    docker-compose up -d

    出现报错正常ERROR: Version in “./docker-compose.yml” is unsupported. You might be seeing this error because you’re using the wrong Compose file version. Either specify a supported version (e.g “2.2” or “3.3”) and place your service definitions under the services key, or omit the version key and place your service definitions at the root of the file to use version 1.
    For more on the Compose file format versions, see https://docs.docker.com/compose/compose-file/

  5. vim编辑文件

    1
    vim docker-compose.yml 
  6. 目标是吧3.7改为3.3,没熟悉的vim会比较复杂
    先i,进去insert模式,使用方向键移动,删除键删除,用字母上面的数字输入
    完成之后按ESC退出insert模式,然后再按 : ,输入wq,回车

  7. 启动

    1
    docker-compose up -d
  8. 完成搭建,访问IP的5000端口即可,默认账号密码:nemo nemo

  9. 进去先进行config-worker配置 在线API接口

  10. 测试API

其他文章
请输入关键词进行搜索