nicsearch

command module
v0.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 9, 2023 License: GPL-2.0 Imports: 21 Imported by: 0

README

nicsearch

Offline lookup by IP/ASN of other IPs/ASNs belonging to the same organization. This tool can also dump IPs/ASNs by country code, as well as map most ASNs to their names. Uses locally cached data, downloaded from all regional internet registries (RIRs) to prevent throttlings and timeouts on high-volume lookups.

Installation

  1. Install the latest Go compiler from https://golang.org/dl/
  2. Install the program:
go install github.com/BourgeoisBear/nicsearch@latest

Usage

Can be used in shell pipelines by providing [QUERY] items as arguments:

nicsearch 'ip 172.104.6.84 +' | grep 'ASN'

Or, invoke without [QUERY] items for interactive mode:

nicsearch

In this mode, the user can supply individual queries inside a REPL environment. RIR data is automatically downloaded and indexed on first invocation. By default, nicsearch caches RIR data in $HOME/.cache/nicsearch as gzipped text files, but this location can be overridden with the -dbpath flag.

nicsearch [OPTION]... [QUERY]...

OPTION
  -color
    force color output on/off (-color=t vs -color=f)
  -dbpath string
    override path to RIR data and index
  -download
    force download of RIR databases
  -pretty
    force pretty print on/off (-pretty=t vs -pretty=f)
  -reindex
    foce rebuild of RIR database index

QUERY
  as ASN [+]
    query by autonomous system number (ASN).
    example: as 14061

    add the suffix '+' to return all IPs and ASNs associated
    by 'reg-id' with the same organization.
    example: as 14061 +

  ip IPADDR [+]
    query by IP (v4 or v6) address.
    example: ip 172.104.6.84

    add the suffix '+' to return all IPs and ASNs associated
    by 'reg-id' with the same organization.
    example: ip 172.104.6.84 +

  cc COUNTRY_CODE
    query by country code.  returns all IPs & ASNs for the given country.
    example: cc US

  na REGEX [+]
    query by ASN name.  returns all ASNs with names matching the given REGEX.
    see https://pkg.go.dev/regexp/syntax for syntax rules.
    example: na microsoft

    add the suffix '+' to return all IPs and ASNs associated
    by 'reg-id' with the same organization(s) of all matching ASNs.
    example: na microsoft +

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL