mirror of https://github.com/daffainfo/nuclei.git
43 lines
1.0 KiB
Go
43 lines
1.0 KiB
Go
package executer
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
"unsafe"
|
|
)
|
|
|
|
type jsonOutput struct {
|
|
Template string `json:"template"`
|
|
Type string `json:"type"`
|
|
Matched string `json:"matched"`
|
|
MatcherName string `json:"matcher_name,omitempty"`
|
|
ExtractedResults []string `json:"extracted_results,omitempty"`
|
|
Severity string `json:"severity"`
|
|
Author string `json:"author"`
|
|
Description string `json:"description"`
|
|
}
|
|
|
|
// unsafeToString converts byte slice to string with zero allocations
|
|
func unsafeToString(bs []byte) string {
|
|
return *(*string)(unsafe.Pointer(&bs))
|
|
}
|
|
|
|
// headersToString converts http headers to string
|
|
func headersToString(headers http.Header) string {
|
|
builder := &strings.Builder{}
|
|
|
|
for header, values := range headers {
|
|
builder.WriteString(header)
|
|
builder.WriteString(": ")
|
|
|
|
for i, value := range values {
|
|
builder.WriteString(value)
|
|
if i != len(values)-1 {
|
|
builder.WriteRune(',')
|
|
}
|
|
}
|
|
builder.WriteRune('\n')
|
|
}
|
|
return builder.String()
|
|
}
|