-
Hello, Thank you for this really nice open-source project! After reading the documentation, I don't really understand how I can block a request if a pattern is found in the found.
I don't see any settings similar to Is it out of scope? Because right now I don't understand how you can interact dynamically with intercepted traffics. Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @0x192 Thanks for your interest in Forwarder! The feature you're asking about hasn’t been implemented yet — you can track progress or leave feedback on it here: #584. That said, you can currently modify traffic using the following options:
In the meantime, the feature you ask for should be relatively straightforward to implement using |
Beta Was this translation helpful? Give feedback.
Hi @0x192
Thanks for your interest in Forwarder!
The feature you're asking about hasn’t been implemented yet — you can track progress or leave feedback on it here: #584.
At the moment, our resources are limited, so we can’t commit to a specific delivery timeline.
That said, you can currently modify traffic using the following options:
--header
- Add or remove request headers.--response-headeer
- Add or remove response headers.--credentials
- Automatically add an authentication header to requests.In the meantime, the feature you ask for should be relatively straightforward to implement using
forwarder.RequestModifier
. If you're interested in experimenting with it, I’d be happy to offe…