Git Product home page Git Product logo

Comments (3)

Athlon1600 avatar Athlon1600 commented on August 30, 2024

Where have you seen these headers being sent? If you visited http://azenv.net you would see that nothing like that is being passed. Whatever headers the browser is sending to PHP-Proxy, those will be forwarded to your destination site exactly, but why would your browser be sending those in the first place? Are you on some kind of school/work computer?

from php-proxy.

jroth55 avatar jroth55 commented on August 30, 2024

You are correct. Let me separate the two issues:

  1. The php-proxy script is in a .htaccess protected directory which creates the HTTP_PHP_AUTH_USER, HTTP_PHP_AUTH_PW, HTTP_AUTHORIZATION headers. Therefore, how do I block these from forwarding through to the destination site?
  2. The HTTP REFERER of every page visited will be the url of the php-proxy. This is not good because it shows php-proxy is being used. I would suggest HTTP_REFERER should be the previous destination site url instead, then the headers will not give away that php-proxy is making the requests.

from php-proxy.

Athlon1600 avatar Athlon1600 commented on August 30, 2024
  1. I know what you're saying, the script should probably keep a whitelist of headers that are to be passed to the destination server instead of forwarding them all. In the meantime, you could just edit HeaderRewritePlugin and add:

$event->getRequest()->headers->remove('HTTP_PHP_AUTH_USER');
$event->getRequest()->headers->remove('HTTP_PHP_AUTH_PW');
.... etc

into onBeforeRequest section. I'll probably fix this by the end of the week anyways.

I started working on this exact thing yesterday when I was dealing with Twitter who doesn't like fake referrers either. This will be fixed very soon.

from php-proxy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.