Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed panic during output (should hopefully fix #800) #887

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
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
14 changes: 13 additions & 1 deletion cmd/amass/enum.go
Original file line number Diff line number Diff line change
Expand Up @@ -540,8 +540,20 @@ func processOutput(ctx context.Context, g *netmap.Graph, e *enum.Enumeration, ou
if !o.Complete(e.Config.Passive) || !e.Config.IsDomainInScope(o.Name) {
continue
}
//This is to create deep copies of the result object... it's not the most elegant way...
reusultObjectData, err := json.Marshal(o)
if err != nil {
r.Fprintln(color.Error, "Failed to create deep copies of results for output")
os.Exit(1)
}
for _, ch := range outputs {
ch <- o
var resultObject *requests.Output
err = json.Unmarshal(reusultObjectData, &resultObject)
if err != nil {
r.Fprintln(color.Error, "Failed to create deep copies of results for output")
os.Exit(1)
}
ch <- resultObject
}
}
}
Expand Down