mirror of
https://github.com/OJ/gobuster.git
synced 2025-07-16 09:14:17 +02:00
42 lines
790 B
Go
42 lines
790 B
Go
package gobusterfuzz
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/fatih/color"
|
|
)
|
|
|
|
var (
|
|
green = color.New(color.FgGreen).FprintfFunc()
|
|
blue = color.New(color.FgBlue).FprintfFunc()
|
|
)
|
|
|
|
// Result represents a single result
|
|
type Result struct {
|
|
Word string
|
|
Path string
|
|
StatusCode int
|
|
Size int64
|
|
Header http.Header
|
|
}
|
|
|
|
// ResultToString converts the Result to its textual representation
|
|
func (r Result) ResultToString() (string, error) {
|
|
buf := &bytes.Buffer{}
|
|
|
|
green(buf, "[Status=%d] [Length=%d] [Word=%s] %s", r.StatusCode, r.Size, r.Word, r.Path)
|
|
|
|
location := r.Header.Get("Location")
|
|
if location != "" {
|
|
blue(buf, " [--> %s]", location)
|
|
}
|
|
|
|
if _, err := fmt.Fprintf(buf, "\n"); err != nil {
|
|
return "", err
|
|
}
|
|
s := buf.String()
|
|
return s, nil
|
|
}
|