As far I understand with service like this or http://hidemyass.com/ you can't.
You shouldn't use the X-Forwarded-For header for anything related to security. More info here: http://r.va.gg/2011/07/wrangling-the-x-forwarded-for-header.html Also, if you use nginx in front of node, you might consider the realip module so you don't thrust any incoming X-Forwarded-For. http://nginx.org/en/docs/http/ngx_http_realip_module.html 2014/1/22 Gonçalo Diogo Bessa <[email protected]> > 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. > -- -- 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.
