You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Json outputs of Feroxbuster consist of multiple Json entities in one file. It makes it difficult to parse. Isn't it possible to normalize de scan output into an array ? Or into multiple arrays called "responses" "log messages" and "statistics" ?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
The Json outputs of Feroxbuster consist of multiple Json entities in one file. It makes it difficult to parse. Isn't it possible to normalize de scan output into an array ? Or into multiple arrays called "responses" "log messages" and "statistics" ?
The actual output is something like that :
{"response":"data"} {"log":"data"} {"response":"data"} {"response":"data"} {"statistics":"data"}It could be something like that ?
{ "responses": [ {"response": "data"}, {"response": "data"} ], "logs": [ {"log": "data"} ], "statistics": ["data"] }Maybe there are better ways to make the output clearer it is just a suggestion of how it could be.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions