-
Notifications
You must be signed in to change notification settings - Fork 863
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
Added the Functionality of storing raw request response headers #1671
Added the Functionality of storing raw request response headers #1671
Conversation
Thanks so much for your contribution @saeed0x1 , we appreciate it! We also have a Discord server, which you’re more than welcome to join. It's a great place to connect with fellow contributors and stay updated with the latest developments! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@saeed0x1 thanks for making this pull request.
Instead of adding 2 new options, we can add 1 new option that can be applied to existing output options.
New option that can be added:
-ob, -omit-body omit response body from output
Add this option will be applicable to:
-oa, -output-all filename to write output results in all formats
-sr, -store-response store http response to output directory
-csv store output in csv format
-j, -json store output in JSONL(ines) format
I have added 2 new flags
-sh
and-shd
. This functionality works just like-sr
and-srd
but It only stores the request and response headers and does not include the response body.I was looking for a functionality same as this; So I implemented it, Hope it helps.