mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 04:15:24 +00:00
Misc output fix
This commit is contained in:
parent
b01dd81d84
commit
6e7318bcba
@ -164,6 +164,9 @@ func (request *Request) executeTurboHTTP(reqURL string, dynamicValues, previous
|
||||
if err == io.EOF {
|
||||
break
|
||||
}
|
||||
if reqURL == "" {
|
||||
reqURL = generatedHttpRequest.URL()
|
||||
}
|
||||
if err != nil {
|
||||
request.options.Progress.IncrementFailedRequestsBy(int64(generator.Total()))
|
||||
return err
|
||||
@ -219,6 +222,9 @@ func (request *Request) ExecuteWithResults(reqURL string, dynamicValues, previou
|
||||
if err == io.EOF {
|
||||
break
|
||||
}
|
||||
if reqURL == "" {
|
||||
reqURL = generatedHttpRequest.URL()
|
||||
}
|
||||
if err != nil {
|
||||
request.options.Progress.IncrementFailedRequestsBy(int64(generator.Total()))
|
||||
return err
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user