mirror of https://github.com/daffainfo/nuclei.git
Misc output fix
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…
Reference in New Issue