diff --git a/CHANGELOG.md b/CHANGELOG.md index a9157fc..a24c222 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - Fixed issue where a thread would hang due to TCP errors - Fixed the issue where the option -ac was overwriting existing filters. Now auto-calibration will add them where needed. - The `-w` flag now accepts comma delimited values in the form of `file1:W1,file2:W2`. + - Links in the HTML report are now clickable - v1.1.0 - New diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 2d34667..1f1e535 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -9,6 +9,7 @@ * [Daviey](https://github.com/Daviey) * [delic](https://github.com/delic) * [eur0pa](https://github.com/eur0pa) +* [fabiobauer](https://github.com/fabiobauer) * [fang0654](https://github.com/fang0654) * [helpermika](https://github.com/helpermika) * [Ice3man543](https://github.com/Ice3man543) diff --git a/pkg/output/file_html.go b/pkg/output/file_html.go index 5978346..7059277 100644 --- a/pkg/output/file_html.go +++ b/pkg/output/file_html.go @@ -86,8 +86,20 @@ const (
|result_raw|{{ $result.StatusCode }}{{ range $keyword, $value := $result.Input }}|{{ $value | printf "%s" }}{{ end }}|{{ $result.Url }}|{{ $result.RedirectLocation }}|{{ $result.Position }}|{{ $result.ContentLength }}|{{ $result.ContentWords }}|{{ $result.ContentLines }}|
- {{ $result.StatusCode }}{{ range $keyword, $value := $result.Input }}{{ $value | printf "%s" }}{{ end }}{{ $result.Url }}{{ $result.RedirectLocation }}{{ $result.Position }}{{ $result.ContentLength }}{{ $result.ContentWords }}{{ $result.ContentLines }}{{ $result.ResultFile }} - {{end}} + + {{ $result.StatusCode }} + {{ range $keyword, $value := $result.Input }} + {{ $value | printf "%s" }} + {{ end }} + {{ $result.Url }} + {{ $result.RedirectLocation }} + {{ $result.Position }} + {{ $result.ContentLength }} + {{ $result.ContentWords }} + {{ $result.ContentLines }} + {{ $result.ResultFile }} + + {{ end }}