Hello everybody,

I would like your help to get remote ip when other try to cheat application.

When using the proxy anonimous through url. :
https://www.megaproxy.com/freesurf/

I'm using express framework.

In my application have the following code to get ip:

exports.RemoteClient = function (req, res) {

    var ipAddress = "";
    var forwardedIpsStr = req.header('x-forwarded-for');
    if (forwardedIpsStr) {
             var forwardedIps = forwardedIpsStr.split(',');
             ipAddress = forwardedIps[0];
    }

    var ip = ipAddress || req.connection.remoteAddress || req.ip;

}


Best regards

Thank you,
Gonçalo Bessa

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to