From 33a0d422c5f94e64a63bda476481022c0b59a9d8 Mon Sep 17 00:00:00 2001 From: nohehf Date: Fri, 17 Mar 2023 13:52:06 -0700 Subject: [PATCH] feat: prepare v0.0.5 --- README.md | 13 +++++++------ internal/utils/utils.go | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d18af22..7eaece1 100644 --- a/README.md +++ b/README.md @@ -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 ````` @@ -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" } ``` @@ -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 diff --git a/internal/utils/utils.go b/internal/utils/utils.go index e40d262..69db61a 100644 --- a/internal/utils/utils.go +++ b/internal/utils/utils.go @@ -10,7 +10,7 @@ import ( ) const ( - VERSION = "v0.0.3" + VERSION = "v0.0.5" ) func MinInt(a, b int) int {