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

add the fuctionality for blocking the proxying to spefic urls #451

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

naddi96
Copy link

@naddi96 naddi96 commented Feb 25, 2023

I added the functinality for blocking request to specific urls.
so all the request to urls in the list requestUrlBlacklist will blocked
and all the urls not in the list requestUrlWhitelist will be blocked.

examples:
you want a proxy that allow access to "google.com" and deny to all other request
requestUrlWhitelist : ["google.com/*"]

you want a proxy that deny access to "google.com" and allow to all other request
requestUrlBlacklist: ["google.com/*"]

you want a proxy that allow access to google.com from a specif path "test" and deny to all other request
requestUrlWhitelist : ["google.com/test/*"]
google.com/test/blabla ->access granted
google.com/hello/ -> access denied
google.com/ -> access denied

@Rob--W
Copy link
Owner

Rob--W commented Feb 25, 2023

Thanks for the PR, but I am not going to merge this because the validation can too easily be bypassed, as described in https://github.com/Rob--W/cors-anywhere/issues/448#issuecomment-1444591332

@naddi96
Copy link
Author

naddi96 commented Feb 26, 2023

Thanks for reviewing my PR,
I'm using an api endpoint that checks the origin header so for this reason I needed this cors-proxy.

At the same time i didn't want my proxy to be used on other websites/endpoints,
I don't want to whitelist the origin because I want to allow requests from different origins and also because it could be still possible to use my proxy on other endpoints if you set the origin header (with curl it's easy to do that).

For this reason I needed some restrictions on based on the request url.
I hope is clear the reason why I did the PR, also I get that this is a niche use case so I understand why you dont want to merge

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.

None yet

2 participants