First of all, thanks for the great tool, and especially the insight to plug together existing components in a new ways, that's even more sexy. Just started using this a few days ago, just reporting in case others also have seen.
I am scanning accounts mostly just forking a bunch of individual awsls instances to get the json, an example cmd line here is:
Each of these instances sends its output to its own file. However, since the app itself is multithreaded there are rare occasions where the output from two queries gets spit out together, and the resulting json is then invalid.
First of all, thanks for the great tool, and especially the insight to plug together existing components in a new ways, that's even more sexy. Just started using this a few days ago, just reporting in case others also have seen.
I am scanning accounts mostly just forking a bunch of individual awsls instances to get the json, an example cmd line here is:
Each of these instances sends its output to its own file. However, since the app itself is multithreaded there are rare occasions where the output from two queries gets spit out together, and the resulting json is then invalid.
No idea how to fix it, not begging for free help (I just regenerate the failed ones for now), but just FYI. Maybe a mutex on stdout? https://forum.golangbridge.org/t/thread-safe-operation-with-stdout-and-stderr/23949 .