From 6f64bf28f0ad7a8c888445ddba8c40ead9ece6cc Mon Sep 17 00:00:00 2001 From: "Neriberto C. Prado" Date: Wed, 20 Dec 2023 09:15:34 -0300 Subject: [PATCH] Update description to release the 1.0.2 version --- README.md | 22 ++++++++++++---------- cmd/hednsextractor/hednsextractor.go | 2 +- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 1555d01..e855ef9 100644 --- a/README.md +++ b/README.md @@ -46,13 +46,17 @@ Usage: Flags: CONFIGURATION: + -config string flag config file (default "/home/hunter/.config/hednsextractor/config.yaml") + +VIRUSTOTAL: + -vt show Virustotal score -vt-api-key string Virustotal API Key + -vt-score string Minimum Virustotal score to show (default "0") OTHER OPTIONS: -only-domains show only domains -only-networks show only networks - -vt show Virustotal score - -vt-score string Minimum Virustotal score to show (default "0") + -workflow string Workflow config -target string IP Address or Network to query -silent show silent output -verbose show verbose output @@ -131,14 +135,12 @@ nslookup hackerone.com | awk '/Address: / {print $2}' | hednsextractor -only-dom And the output will be as below ``` - _______ ______ _ _______ _______ _________ _______ _______ _______ _________ _______ _______ -|\ /|( ____ \( __ \ ( ( /|( ____ \( ____ \|\ /|\__ __/( ____ )( ___ )( ____ \\__ __/( ___ )( ____ ) -| ) ( || ( \/| ( \ )| \ ( || ( \/| ( \/( \ / ) ) ( | ( )|| ( ) || ( \/ ) ( | ( ) || ( )| -| (___) || (__ | | ) || \ | || (_____ | (__ \ (_) / | | | (____)|| (___) || | | | | | | || (____)| -| ___ || __) | | | || (\ \) |(_____ )| __) ) _ ( | | | __)| ___ || | | | | | | || __) -| ( ) || ( | | ) || | \ | ) || ( / ( ) \ | | | (\ ( | ( ) || | | | | | | || (\ ( -| ) ( || (____/\| (__/ )| ) \ |/\____) || (____/\( / \ ) | | | ) \ \__| ) ( || (____/\ | | | (___) || ) \ \__ -|/ \|(_______/(______/ |/ )_)\_______)(_______/|/ \| )_( |/ \__/|/ \|(_______/ )_( (_______)|/ \__/ +╭╮╱╭┳━━━┳━━━╮╱╱╱╱╱╭━━━╮╱╱╭╮╱╱╱╱╱╱╱╱╭╮ +┃┃╱┃┃╭━━┻╮╭╮┃╱╱╱╱╱┃╭━━╯╱╭╯╰╮╱╱╱╱╱╱╭╯╰╮ +┃╰━╯┃╰━━╮┃┃┃┣━╮╭━━┫╰━━┳╮┣╮╭╋━┳━━┳━┻╮╭╋━━┳━╮ +┃╭━╮┃╭━━╯┃┃┃┃╭╮┫━━┫╭━━┻╋╋┫┃┃╭┫╭╮┃╭━┫┃┃╭╮┃╭╯ +┃┃╱┃┃╰━━┳╯╰╯┃┃┃┣━━┃╰━━┳╋╋┫╰┫┃┃╭╮┃╰━┫╰┫╰╯┃┃ +╰╯╱╰┻━━━┻━━━┻╯╰┻━━┻━━━┻╯╰┻━┻╯╰╯╰┻━━┻━┻━━┻╯ [INF] Current hednsextractor version v1.0.0 [INF] [104.16.0.0/12] domain: ohst.ltd VT Score: 0 diff --git a/cmd/hednsextractor/hednsextractor.go b/cmd/hednsextractor/hednsextractor.go index bc817f3..249bdbb 100644 --- a/cmd/hednsextractor/hednsextractor.go +++ b/cmd/hednsextractor/hednsextractor.go @@ -21,7 +21,7 @@ func main() { flagSet := goflags.NewFlagSet() flagSet.Marshal = true - flagSet.SetDescription("HEDnsExtractor - Raw html extractor from Hurricane Electric portal!") + flagSet.SetDescription("HEDnsExtractor - A suite for hunting suspicious targets, expose domains and phishing discovery!") flagSet.BoolVar(&utils.OptionCmd.Onlydomains, "only-domains", false, "show only domains") flagSet.BoolVar(&utils.OptionCmd.Onlynetworks, "only-networks", false, "show only networks") flagSet.StringVar(&utils.OptionCmd.Workflow, "workflow", "", "Workflow config")