Given two IP's can you check if it comes from the same network?

-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 obtained, but it is still not possible 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 can you tell if they come from the same computer / network? If so, how?

    
asked by anonymous 05.01.2018 / 23:38

1 answer

-1

only with the MAC (network card address), which could be possible, or even if the user accesses the same account with other IPs. I do not know anything about programming in Python, but I can tell you that when a user accesses a website, it appears both the IP, operating system, browser, etc.

Ex: Date: 1/6/2018

browser: Google Chrome

IP: 192.168.0.1

OS: Windows 7

I just do not know if the MAC appears, which would be the solution to your problem

I hope I have helped: D

    
06.01.2018 / 04:24