0
Does anyone know how I can get all the ips on a network
So I really wanna become an ethical hacker and get good at networking does anyone know how in python I can make it so that on my network it’ll print all the ips connected?
3 Respostas
+ 1
i dont think there is a shortcut for this, or if its possible in python i'm not yet good at it
but you can scan and ping every possible ip, by using you own ip and define the range by its class.
+ 1
do quick google search you'll find some code to get your ip
make an if statement to define which class its belong to
then loop trough and ping every possible ip (another google search) in your ip range
once you found an ip with positive result store them somewhere using list or something, then continue the loop.
0
but how Taste