"Network Scanner #3" Code Answer's

You're definitely familiar with the best coding language Whatever that developers use to develop their projects and they get all their queries like "Network Scanner #3" answered properly. Developers are finding an appropriate answer about Network Scanner #3 related to the Whatever coding language. By visiting this online portal developers get answers concerning Whatever codes question like Network Scanner #3. Enter your desired code related query in the search bar and get every piece of information about Whatever code related question on Network Scanner #3. 

Network Scanner #3

By Foolish FerretFoolish Ferret on Jun 03, 2021
import socket
from datetime import datetime
net = input("Enter the IP address: ")
net1 = net.split('.')
a = '.'

net2 = net1[0] + a + net1[1] + a + net1[2] + a
st1 = int(input("Enter the Starting Number: "))
en1 = int(input("Enter the Last Number: "))
en1 = en1 + 1
t1 = datetime.now()

def scan(addr):
   s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
   socket.setdefaulttimeout(1)
   result = s.connect_ex((addr,135))
   if result == 0:
      return 1
   else :
      return 0

def run1():
   for ip in range(st1,en1):
      addr = net2 + str(ip)
      if (scan(addr)):
         print (addr , "is live")
         
run1()
t2 = datetime.now()
total = t2 - t1
print ("Scanning completed in: " , total)

Source: www.tutorialspoint.com

Add Comment

0

All those coders who are working on the Whatever based application and are stuck on Network Scanner #3 can get a collection of related answers to their query. Programmers need to enter their query on Network Scanner #3 related to Whatever code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about Network Scanner #3 for the programmers working on Whatever code while coding their module. Coders are also allowed to rectify already present answers of Network Scanner #3 while working on the Whatever language code. Developers can add up suggestions if they deem fit any other answer relating to "Network Scanner #3". Visit this developer's friendly online web community, CodeProZone, and get your queries like Network Scanner #3 resolved professionally and stay updated to the latest Whatever updates. 

Whatever answers related to "Network Scanner #3"

View All Whatever queries

Whatever queries related to "Network Scanner #3"

Browse Other Code Languages

CodeProZone