mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-03 09:55:57 -05:00
Update setting cleint ip in agentonly webrequest
This commit is contained in:
parent
80d29262f9
commit
2cd9a56046
@ -5572,9 +5572,9 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
|
|||||||
var ipex = '0.0.0.0';
|
var ipex = '0.0.0.0';
|
||||||
if (typeof req.connection.remoteAddress == 'string') { ipex = (req.connection.remoteAddress.startsWith('::ffff:')) ? req.connection.remoteAddress.substring(7) : req.connection.remoteAddress; }
|
if (typeof req.connection.remoteAddress == 'string') { ipex = (req.connection.remoteAddress.startsWith('::ffff:')) ? req.connection.remoteAddress.substring(7) : req.connection.remoteAddress; }
|
||||||
if (
|
if (
|
||||||
(obj.args.trustedproxy === true) ||
|
(obj.args.trustedproxy === true) || (obj.args.tlsoffload === true) ||
|
||||||
((typeof obj.args.trustedproxy == 'object') && (obj.args.trustedproxy.indexOf(ipex) >= 0)) ||
|
((typeof obj.args.trustedproxy == 'object') && (isIPMatch(ipex, obj.args.trustedproxy))) ||
|
||||||
((typeof obj.args.tlsoffload == 'object') && (obj.args.tlsoffload.indexOf(ipex) >= 0))
|
((typeof obj.args.tlsoffload == 'object') && (isIPMatch(ipex, obj.args.tlsoffload)))
|
||||||
) {
|
) {
|
||||||
if (req.headers['cf-connecting-ip']) { // Use CloudFlare IP address if present
|
if (req.headers['cf-connecting-ip']) { // Use CloudFlare IP address if present
|
||||||
req.clientIp = req.headers['cf-connecting-ip'].split(',')[0].trim();
|
req.clientIp = req.headers['cf-connecting-ip'].split(',')[0].trim();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user