XFF headers supported in OJS 2.4.x

I am looking to determine if OJS 2.4x supports XFF headers for access to OJS? Details located here: X-Forwarded-For - Wikipedia

Thanks!

X-Forwarded-For is optionally used for identifying the source of requests.

What is your particular use case?

Thanks Curtis, I just stumbled across this in the config file. Here are the questions please.

  1. Do XFF headers work?
  2. Is there a security issue setting trust_x_forwarded_for = on ??
  3. The default statement of “on” seems inaccurate for 2.4.x installs as we did not know it was there.
  4. Does enabling it break something else?
  5. Is there a way to be emailed when someone access the system via this mode?
    Our section of config.

; Allow the X_FORWARDED_FOR header to override the REMOTE_ADDR as the source IP
; Set this to “On” if you are behind a reverse proxy and you control the X_FORWARDED_FOR
; Warning: This defaults to “On” if unset for backwards compatibility.
trust_x_forwarded_for = Off

Many Thanks!
radjr

If a client connects to OJS and providers an X-Forwarded-For header, the config.inc.php setting
trust_x_forwarded_for will determine whether or not the client is coming “from” the IP indicated by the X-Forwarded-For header, or “from” the remote IP offering the X-Forwarded-For header. This happens at a very basic level, so it should affect things like internal logging, institutional subscription authentication, session verification, etc.

X-Forwarded-For headers are typically a function of a proxy, so whether or not to trust them largely depends on whether or not you trust the proxy.

The config.inc.php which ships with OJS enables this directive, and sets the directive to “Off”. You can explicitly turn “On” this directive, at your option. If the config.inc.php file does not have this directive, or if the directive is commented out, the default action for legacy purposes is “On”. Only when the directive is present and is set of “Off” is the X-Forwarded-For header not used.

There is nothing in place to send an email regarding clients connecting with an X-Forwarded-For header. If you want to describe your use case in more detail, we could suggest where you might need to look in the code to make changes.

Thanks. My concern was based around spoofed headers, people effective spoofing a header to gain access to the OJS system and around the authentication system. Will think about the email issue and respond. It was really for debugging purposes. Thank you!

Followup. Changing this system allowed the reader to access the journal with XFF headers. The are Zscaler to as an external cloud based firewall. So I bet many other journals are going to start seeing this.

Still looking for anybody’s thoughts on the security aspects of accepting XFF headers. Thanks!