项目作者: woanware

项目描述 :
Tool to extract domains/IP's from files
高级语言: Go
项目地址: git://github.com/woanware/extract-web-domains.git
创建时间: 2017-02-03T08:12:38Z
项目社区:https://github.com/woanware/extract-web-domains

开源协议:

下载


extract-web-domains

Tool to extract domains/IP’s from files with validation for the data e.g. valid TLD, valid IPv4/IPv6

gb

The project uses gb for building the project. gb allows for reproducible builds and vendoring so that all dependencies are kept with the project source.

To install gb, create a temporary directory and set the GOPATH environment variable to the new temporary directory.

  1. $ export GOPATH=/home/bsmith/tempgb

Then download the source code for gb

  1. go get github.com/constabulary/gb/...

Navigate to the gb sub-directory:

  1. cd /home/bsmith/tempgb/src/github.com/constabulary/gb

Build the project

  1. go build

Copy the binaries to the local path

  1. cp ../../../bin/* /usr/local/bin

The gb command maybe aliased with git, so check with:

  1. alias gb

If the alias exists then you can unaliase by:

  1. unalias gb

Compile with gb

To compile the application use the following commands (assuming the same directory structure):

  1. $ cd extract-web-domains
  2. $ gb build all