mirror of
https://github.com/ffuf/ffuf
synced 2024-11-10 06:04:17 +00:00
issue/274 * made links in HTML report clickable (#323)
* issue/274 * made links in HTML report clickable * issue/274 * updated changelog and contributors * fixed contributors order
This commit is contained in:
parent
ecc649b32f
commit
2be8b878f8
3 changed files with 16 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -86,8 +86,20 @@ const (
|
|||
<div style="display:none">
|
||||
|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 }}|
|
||||
</div>
|
||||
<tr class="result-{{ $result.StatusCode }}" style="background-color: {{$result.HTMLColor}};"><td><font color="black" class="status-code">{{ $result.StatusCode }}</font></td>{{ range $keyword, $value := $result.Input }}<td>{{ $value | printf "%s" }}</td>{{ end }}</td><td>{{ $result.Url }}</td><td>{{ $result.RedirectLocation }}</td><td>{{ $result.Position }}</td><td>{{ $result.ContentLength }}</td><td>{{ $result.ContentWords }}</td><td>{{ $result.ContentLines }}</td><td>{{ $result.ResultFile }}</td></tr>
|
||||
{{end}}
|
||||
<tr class="result-{{ $result.StatusCode }}" style="background-color: {{$result.HTMLColor}};">
|
||||
<td><font color="black" class="status-code">{{ $result.StatusCode }}</font></td>
|
||||
{{ range $keyword, $value := $result.Input }}
|
||||
<td>{{ $value | printf "%s" }}</td>
|
||||
{{ end }}
|
||||
<td><a href="{{ $result.Url }}">{{ $result.Url }}</a></td>
|
||||
<td><a href="{{ $result.RedirectLocation }}">{{ $result.RedirectLocation }}</a></td>
|
||||
<td>{{ $result.Position }}</td>
|
||||
<td>{{ $result.ContentLength }}</td>
|
||||
<td>{{ $result.ContentWords }}</td>
|
||||
<td>{{ $result.ContentLines }}</td>
|
||||
<td>{{ $result.ResultFile }}</td>
|
||||
</tr>
|
||||
{{ end }}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
|
Loading…
Reference in a new issue