Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to make nmap port scanner in python

#Here I am Using API

import requests as r

host = input("Enter Your Host IP/Domain")
api = r.get(f"https://api.hackertarget.com/nmap/?q={host}")
out = api.text

print(out)
Comment

PREVIOUS NEXT
Code Example
Python :: python how to make a server 
Python :: pandas convert all string columns to lowercase 
Python :: drawkeypoints cv2 
Python :: extract n grams from text python 
Python :: standard module 
Python :: pyspark select without column 
Python :: how to clear a text file in python 
Python :: how to change number of steps in tensorflow object detection api 
Python :: python write requests response to text file 
Python :: how to remove all characters from a string in python 
Python :: python sum attribute in list 
Python :: remove duplicates without changing order python 
Python :: OneHotEncoder sklearn python 
Python :: how to add a number to a variable in django template 
Python :: get index of element in numpy array python 
Python :: ordered char list python 
Python :: how to calculate mean in python 
Python :: sorted python lambda 
Python :: python send email outlook 
Python :: how to run function on different thread python 
Python :: os.getlogin() python 
Python :: django.core.exceptions.FieldError: Unknown field(s) (author) specified for Comment 
Python :: python wsgi server 
Python :: pygame hide cursor 
Python :: opencv save image rgb 
Python :: read text from a pdffile python 
Python :: python install gimp 
Python :: python exceute 60 records per minute counter 
Python :: create temporary files in python 
Python :: python if not path exist make path 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =