adding uri path to output

This commit is contained in:
Mzack9999
2020-07-23 21:40:46 +02:00
parent 739545ce5e
commit c42befea93
+2 -2
View File
@@ -263,9 +263,9 @@ retry:
if resp.StatusCode >= 0 {
if port > 0 {
fullURL = fmt.Sprintf("%s://%s:%d", protocol, domain, port)
fullURL = fmt.Sprintf("%s://%s:%d%s", protocol, domain, port, scanopts.RequestURI)
} else {
fullURL = fmt.Sprintf("%s://%s", protocol, domain)
fullURL = fmt.Sprintf("%s://%s%s", protocol, domain, scanopts.RequestURI)
}
}