zzw

Results 5 comments of zzw

@GeorginaReeder When executing a scanning task using the SDK's `ExecuteWithCallback` function, only events can be obtained (only when results are found). However, I want to capture both results and when...

@Mzack9999 Hi,This method does not solve the problem, I expect to get the debug message of each POC and read it through the io.WriteCloser.

``` func(){ writer, err := output.NewWriter( output.WithMatcherStatus(true), output.WithJson(true, true), ) if err != nil { panic(err) } var ne *nuclei.NucleiEngine ne, err = nuclei.NewNucleiEngine( nuclei.UseOutputWriter(writer), )} ```

``` type NucleiEngine struct { // user options resultCallbacks []func(event *output.ResultEvent) onFailureCallback func(event *output.InternalEvent) disableTemplatesAutoUpgrade bool enableStats bool onUpdateAvailableCallback func(newVersion string) …… } I want to get "onFailureCallback func(event *output.InternalEvent)"