Skip to content

Commit

Permalink
feat: prepare v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nohehf committed Mar 17, 2023
1 parent 161a25e commit 33a0d42
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ Blazing fast graphql fingerprinting toolbox.
__ _ ___ ___| |_ ___ _ __ _ _ ___
/ _` |/ _ \ / __| __/ _ \| '_ \| | | / __|
| (_| | (_) | (__| || (_) | |_) | |_| \__ \
\__, |\___/ \___|\__\___/| .__/ \__,_|___/ v0.0.4
\__, |\___/ \___|\__\___/| .__/ \__,_|___/ v0.0.5
|___/ |_|
INFO[0000] Starting 100 workers
INFO[0000] Found: {"domain":"gontoz.escape.tech","type":"OPEN_GRAPHQL","url":"https://gontoz.escape.tech"}
INFO[0000] Found: {"domain":"gontoz.escape.tech","type":"OPEN_GRAPHQL","url":"https://gontoz.escape.tech", "source": "escape.tech"}
INFO[0002] Done. Found 1 graphql endpoint
`````

Expand Down Expand Up @@ -108,9 +108,10 @@ Each line corresponds to one found graphql endpoint and will contain at least th

```JSON
{
"domain": "example.com",
"domain": "subdomain.example.com",
"type": "OPEN_GRAPHQL",
"url": "https://example.com/graphql"
"url": "https://subdomain.example.com/graphql",
"source": "example.com"
}
```

Expand Down Expand Up @@ -159,8 +160,8 @@ docker run --rm -it -v $(pwd):/data escapetech/goctopus:latest -f /data/input.tx
Using a specific version:

```BASH
# for version v0.0.4
docker run --rm -it escapetech/goctopus:0.0.4 [args]
# for version vA.B.C
docker run --rm -it escapetech/goctopus:A.B.C [args]
```

## Roadmap
Expand Down
2 changes: 1 addition & 1 deletion internal/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

const (
VERSION = "v0.0.3"
VERSION = "v0.0.5"
)

func MinInt(a, b int) int {
Expand Down

0 comments on commit 33a0d42

Please sign in to comment.