Skip to content

An ip and port scanner with the ability to scan in seconds

License

Notifications You must be signed in to change notification settings

m4rks30/ip.and.port

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ip.and.port

An ip and port scanner with the ability to scan in seconds

Usage/Examples

import socket
from colorama import *
     def is_port_open(ip, port):
    """
`ip` has the `port` open
    """
    s = socket.socket()
    try:
host=input("Enter the ip:")
for port in range(1, 1025):
    if is_port_open(host, port):
        print(f"{GREEN}[+] {host}:{port} is open      {RESET}")
    else:

Stop code

ctrl+c

Code execution

git clone https://github.com/m4rks30/ip.and.port
ls
cd ip.and.port
  python ips1.py

About

An ip and port scanner with the ability to scan in seconds

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages