Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/j3ssie/sdlookup
IP Lookups for Open Ports and Vulnerabilities from internetdb.shodan.io
https://github.com/j3ssie/sdlookup
internetdb osint shodan
Last synced: 7 days ago
JSON representation
IP Lookups for Open Ports and Vulnerabilities from internetdb.shodan.io
- Host: GitHub
- URL: https://github.com/j3ssie/sdlookup
- Owner: j3ssie
- License: mit
- Created: 2022-03-07T04:58:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-03-10T03:28:43.000Z (over 2 years ago)
- Last Synced: 2024-10-15T17:52:16.278Z (19 days ago)
- Topics: internetdb, osint, shodan
- Language: Go
- Homepage:
- Size: 10.7 KB
- Stars: 116
- Watchers: 3
- Forks: 17
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - j3ssie/sdlookup - IP Lookups for Open Ports and Vulnerabilities from internetdb.shodan.io (Go)
README
sdlookup
==========
IP Lookups for Open Ports and Vulnerabilities from [internetdb.shodan.io](https://internetdb.shodan.io/)This is a golang version of [nrich](https://gitlab.com/shodan-public/nrich) which support concurrency and more efficient output.
## Install
```shell
go install github.com/j3ssie/sdlookup@latest
```## Usage
```shell
# Basic Usage
echo '1.2.3.4' | sdlookup -open
1.2.3.4:80
1.2.3.4:443# lookup CIDR range
echo '1.2.3.4/24' | sdlookup -open -c 20
1.2.3.4:80
1.2.3.5:80# get raw JSON response
echo '1.2.3.4' | sdlookup -json```