mirror of https://github.com/daffainfo/nuclei.git
15 lines
358 B
Go
15 lines
358 B
Go
package output
|
|
|
|
import (
|
|
jsoniter "github.com/json-iterator/go"
|
|
)
|
|
|
|
// formatJSON formats the output for json based formatting
|
|
func (w *StandardWriter) formatJSON(output *ResultEvent) ([]byte, error) {
|
|
if !w.jsonReqResp { // don't show request-response in json if not asked
|
|
output.Request = ""
|
|
output.Response = ""
|
|
}
|
|
return jsoniter.Marshal(output)
|
|
}
|