From 5e6ca8dd643b3e086f42b287941b0c3d409c8551 Mon Sep 17 00:00:00 2001 From: edoardottt Date: Tue, 5 Oct 2021 18:44:38 +0200 Subject: [PATCH] v1.1.2 --- crawler/colly.go | 1 - main.go | 2 +- output/beautify.go | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/crawler/colly.go b/crawler/colly.go index 63aefa0..0349a45 100644 --- a/crawler/colly.go +++ b/crawler/colly.go @@ -205,7 +205,6 @@ func Crawler(target string, txt string, html string, delayTime int, concurrency // Create a callback on the XPath query searching for the URLs c.OnXML("//urlset/url/loc", func(e *colly.XMLElement) { link := e.Text - output.EncapsulateCustomRed("XML URL", link) if len(link) != 0 { absoluteUrl := utils.AbsoluteURL(protocolTemp, targetTemp, e.Request.AbsoluteURL(link)) // Visit link found on page diff --git a/main.go b/main.go index a7dbe11..6610b5a 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ /* ========== -Cariddi v1.1.1 +Cariddi v1.1.2 ========== This program is free software: you can redistribute it and/or modify diff --git a/output/beautify.go b/output/beautify.go index ed82f44..eec8b1a 100644 --- a/output/beautify.go +++ b/output/beautify.go @@ -35,7 +35,7 @@ func Beautify() { banner2 := " ___ __ _ _ __(_) __| | __| (_)\n" banner3 := " / __/ _` | '__| |/ _` |/ _` | |\n" banner4 := " | (_| (_| | | | | (_| | (_| | |\n" - banner5 := " \\___\\__,_|_| |_|\\__,_|\\__,_|_| v1.1.1\n" + banner5 := " \\___\\__,_|_| |_|\\__,_|\\__,_|_| v1.1.2\n" banner6 := "" banner7 := " > github.com/edoardottt/cariddi\n" banner8 := " > edoardoottavianelli.it\n"