Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsteele committed Sep 11, 2015
1 parent a17bf62 commit ff02ed8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# drone-shodan
Provided a newline delimited file containing cidr netblocks or ip addresses, this drone uses shodan's 'net' and 'host' search operators to identify and import available services into lair. Requests are made to shodan concurrently using a pool of 10 goroutines.

Provided a newline delimited file containing cidr netblocks or ip
addresses, this drone uses shodan's 'net' and 'host' search operators to identify and import available
services into lair. Requests are made to shodan concurrently using a pool of 10 goroutines.
## Install
Download a compiled binary for supported operating systems from [here](https://github.com/lair-framework/drone-shodan/releases/latest).

```
$ mv drone-shodan* drone-shodan
$ ./drone-shodan -h
```


## Shodan API Key
This drone requires a shodan API key. The key is provided using an environment variable.
```
$ export SHODAN_KEY='yourkeygoeshere'
```
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const (
tool = "shodan"
osWeight = 50
usage = `
Provided a file containing a new line delimited file containing cidr netblocks or ip
addresses, this drone uses shodan's 'net' and 'host' search to identify and import available
Provided a newline delimited file containing cidr netblocks or ip
addresses, this drone uses shodan's 'net' and 'host' search operators to identify and import available
services into lair. Requests are made to shodan concurrently using a pool of 10 goroutines.
Usage:
Expand Down

0 comments on commit ff02ed8

Please sign in to comment.