Given two IP’s is it possible to check if it comes from the same network?

Asked

Viewed 92 times

-1

I’m starting with Python now and I’m developing a project to find users with multiple accounts on a given site. The IP’s are already downloaded, but it remains to be able to verify if, comparing the IP’s, two or more IP’s come from the same computer. For example:

Given the IP’s 177.158.xxx.xxx and 177.135.xxx.xxx is it possible to know if they come from the same computer/network? If so, how do?

  • Will your application be accessed via internet, LAN, intranet? Make it clear who is going to access your application.

  • Thank you for trying to help me, but I already solved the problem. I couldn’t do what was described in my question, but I solved it in another way. Once again, thank you.

1 answer

-1


only with the MAC(network card address), which might be possible, or even if the user accesses the same account with other Ips. I don’t know anything about Python programming, but I can tell you that when a user accesses a site, both IP, operating system, browser, etc appear..

Ex: Date:06/01/2018

browser:Google Chrome

IP:192.168.0.1

OS:Windows 7

I just don’t know if the MAC appears, that would be the solution to your problem

I hope I helped :D

  • After some research I became more aware of this and saw that it was not possible to do it the way I wanted. Thank you.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.