I have been looking for tutorials for about an hour now for pythin networking and nothing i am finding is helpful.
What i need is a python program that will take a computers ip adress and tell me if a specific port is open.
Can anyone give me a quick, up to date example that will do this? I do not need multi-threading or anything fancy. Just a quick straight to the point program. Thanks.
Import socket
target_ip = ""
target_port = ""
# where do i go from here? Thanks.