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

Added ability to edit headers of intercepted HTTP requests #1006

Closed
wants to merge 1 commit into from
Closed

Added ability to edit headers of intercepted HTTP requests #1006

wants to merge 1 commit into from

Conversation

jonassobotta
Copy link

This commit introduces the capability to alter HTTP headers of intercepted requests. Users can now specify custom headers to be added or modified in responses. This feature allows for dynamic adjustments such as redirects via the Location header, manipulation of Set-Cookie for session testing, and setting CORS policies directly within intercepted responses etc.

Example YAML configuration snippet:

intercept:
  - domain: 'target.example.com'
    path: '^\/login$'
    http_status: 302
    headers:
      Location: 'https://phish.example.com'
      Set-Cookie: 'session=invalid; Path=/; Expires=Wed, 21 Oct 2024 07:28:00 GMT'
      Access-Control-Allow-Origin: '*'

@jonassobotta jonassobotta closed this by deleting the head repository Jul 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant