At the moment I'm running a SOAP Service on PHP basis which handles logins from users. Now I am looking to find out which machine they are coming. The problem is, that I want to prevent users sharing their account credentials (paid ones) with others.

Therefore is it possible to read the client's IP or any other data which is unique?

Thanks!

link|improve this question
3  
Client IP can be found in $_SERVER['REMOTE_ADDR'] but to be honest this is unlikely to help unless a) you force all customers to register their IP when they sign up and b) they have a static IP address – DaveRandom Jan 24 at 17:49
1  
An email address is unique to most account models. Perhaps analyze access history with suggestion provided by @DaveRandom and then when odd behavior appears, show an email validation form upon login. This would help at least a little. – cillosis Jan 24 at 17:57
1  
I would suggest logging the IP addresses used, then look at the accounts using multiple IP's and finally check the timestamps of those calls to see if there are multiple machines/users hitting the web service at the same time. I don't know that I would block people automatically in code - there may be legitimate reasons they are using multiple IP's. Use this as a tool to investigate further. – AndrewR Jan 24 at 18:01
Thanks for the requests. But I need to fetch it from any soap client. I don't want to force the users to put in their IP's. – maTu Jan 25 at 19:42
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.