N-PN White-Hat Project
[Python] Scan de ports - Version imprimable

+- N-PN White-Hat Project (https://dev.n-pn.fr/forum)
+-- Forum : Programmation (https://dev.n-pn.fr/forum/forumdisplay.php?fid=72)
+--- Forum : Langages interprétés (https://dev.n-pn.fr/forum/forumdisplay.php?fid=27)
+--- Sujet : [Python] Scan de ports (/showthread.php?tid=2769)



[Python] Scan de ports - InstinctHack - 03-03-2013

Salut,

Un petit (et simple) scanneur de port, avec deux types de scans :
bruteforce qui testeras tous les ports // type_scan=1
frequent qui testeras les ports les plus utilisés /// type_scan=2
Ca marche en thread (le nombre est variables) et les ports à tester sont dispachés entre les threads.
C'est très améliorable bien sûr Wink

l'archive c'est pour avoir le deuxième fichier qui vas avec.

ps : coucou hypnoze57 :p


Code PYTHON :

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import socket,threading

"""
    Provenance du fichier data : http://fr.wikipedia.org/wiki/Liste_de_ports_logiciels
"""


print("### Soft Scann ###")

print("\t### Configuration ###")

### Paramètres
host="127.0.0.1"
port_min=0
port_max=65535
port_actuel=0
type_scan=2
nombre_thread=10
###

data={}
### Récupération data
for Cle,Valeur in enumerate(open("data.txt","r").readlines()):
    elements=Valeur.strip().split()
    data[elements[0]]={'protocole':elements[1],'infos':elements[2]}
###

### Def functions
def test_port(host,port):
    try:
        s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        s.settimeout(2)
        s.connect((host,port))
        return True
        s.close()
    except:
        return False

def thread_analyse_port(host,ports_thread,data):
    for port_actuel in ports_thread:
        if test_port(host,port_actuel):
            port_actuel_str=str(port_actuel)
            msg="\t\t[OPEN] "+port_actuel_str
            if port_actuel_str in data:
                msg+="\t"+data[port_actuel_str]['protocole']+"\t"+data[port_actuel_str]['infos']
            print(msg)
###

ports=[]
if type_scan==1:
    ports=range(0,65535)
elif type_scan==2:
    for Cle,Valeur in enumerate(data):
        ports.append(int(Valeur))

threads=[]

for Valeur in range(0,nombre_thread):
    threads.append([])

for Cle,port_actuel in enumerate(ports):
    threads[Cle%nombre_thread].append(port_actuel)

print("\t### Starting Scann ["+host+"] ###")

for Cle,Valeur in enumerate(threads):
    threading.Thread(None, thread_analyse_port, None, (), {'host':host,'ports_thread':Valeur,"data":data}).start()

#print("### Scan Complete ["+host+"] ###")
 



RE: [Python] Scan de ports - notfound - 03-03-2013

(03-03-2013, 18h47)khaled a écrit : ps : coucou hypnoze57 :p

LULZ \o/
Il est a l'origine de cette idée n'empêche


RE: [Python] Scan de ports - Hypnoze57 - 03-03-2013

Je pique :p thanks !


RE: [Python] Scan de ports - thxer - 04-03-2013

Merci Wink