nuclei/v2/pkg/protocols/offlinehttp/read_response.go

45 lines
1.2 KiB
Go
Raw Normal View History

package offlinehttp
import (
"bufio"
2021-02-08 19:08:35 +05:30
"errors"
"net/http"
2021-10-02 14:30:40 +07:00
"regexp"
"strings"
)
var noMinor = regexp.MustCompile(`HTTP\/([0-9]) `)
// readResponseFromString reads a raw http response from a string.
func readResponseFromString(data string) (*http.Response, error) {
var final string
2021-10-02 14:30:40 +07:00
if strings.HasPrefix(data, "HTTP/") {
final = addMinorVersionToHTTP(data)
} else {
2021-02-08 19:08:35 +05:30
lastIndex := strings.LastIndex(data, "HTTP/")
if lastIndex == -1 {
return nil, errors.New("malformed raw http response")
}
2021-02-27 12:31:17 +05:30
final = data[lastIndex:] // choose last http/ in case of it being later.
2021-10-02 14:30:40 +07:00
final = addMinorVersionToHTTP(final)
}
return http.ReadResponse(bufio.NewReader(strings.NewReader(final)), nil)
}
// addMinorVersionToHTTP tries to add a minor version to http status header
// fixing the compatibility issue with go standard library.
func addMinorVersionToHTTP(data string) string {
matches := noMinor.FindAllStringSubmatch(data, 1)
if len(matches) == 0 {
return data
}
if len(matches[0]) < 2 {
return data
}
replacedVersion := strings.Replace(matches[0][0], matches[0][1], matches[0][1]+".0", 1)
data = strings.Replace(data, matches[0][0], replacedVersion, 1)
return data
}