Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pkg/core/execute_options.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ func (e *Engine) executeTemplateSpray(ctx context.Context, templatesList []*temp
defer wp.Wait()

for _, template := range templatesList {
template := template

select {
case <-ctx.Done():
Expand Down
1 change: 0 additions & 1 deletion pkg/input/formats/burp/burp.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ func (j *BurpFormat) Parse(input io.Reader, resultsCb formats.ParseReqRespCallba

// Print the parsed data for verification
for _, item := range items.Items {
item := item
binx, err := base64.StdEncoding.DecodeString(item.Request.Raw)
if err != nil {
return errors.Wrap(err, "could not decode base64")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ func TestCacheCheckConcurrent(t *testing.T) {
wg := sync.WaitGroup{}
for i := 1; i <= 100; i++ {
wg.Add(1)
i := i
go func() {
defer wg.Done()
cache.MarkFailed(protoType, ctx, errors.New("no address found for host"))
Expand Down
Loading