ffuf/pkg/output/file_csv.go

53 lines
938 B
Go
Raw Normal View History

2019-04-03 09:51:42 +00:00
package output
import (
"encoding/base64"
"encoding/csv"
"os"
"strconv"
"github.com/ffuf/ffuf/pkg/ffuf"
)
var header = []string{"input", "position", "status_code", "content_length", "content_words"}
2019-04-03 09:51:42 +00:00
func writeCSV(config *ffuf.Config, res []Result, encode bool) error {
f, err := os.Create(config.OutputFile)
if err != nil {
return err
}
defer f.Close()
w := csv.NewWriter(f)
defer w.Flush()
if err := w.Write(header); err != nil {
return err
}
for _, r := range res {
if encode {
r.Input = base64encode(r.Input)
}
err := w.Write(toCSV(r))
if err != nil {
return err
}
}
return nil
}
func base64encode(in string) string {
return base64.StdEncoding.EncodeToString([]byte(in))
}
func toCSV(r Result) []string {
return []string{
r.Input,
strconv.Itoa(r.Position),
2019-04-03 09:51:42 +00:00
strconv.FormatInt(r.StatusCode, 10),
strconv.FormatInt(r.ContentLength, 10),
strconv.FormatInt(r.ContentWords, 10),
}
}