-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpytcpscan.py
40 lines (26 loc) · 1.8 KB
/
pytcpscan.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/python
# -*- coding: utf-8 -*-
# PyTCPScan Version 1.0 (beta)
import socket
def baner():
print " "
print "██████╗ ██╗ ██╗████████╗ ██████╗██████╗ ███████╗ ██████╗ █████╗ ███╗ ██╗"
print "██╔══██╗╚██╗ ██╔╝╚══██╔══╝██╔════╝██╔══██╗██╔════╝██╔════╝██╔══██╗████╗ ██║"
print "██████╔╝ ╚████╔╝ ██║ ██║ ██████╔╝███████╗██║ ███████║██╔██╗ ██║"
print "██╔═══╝ ╚██╔╝ ██║ ██║ ██╔═══╝ ╚════██║██║ ██╔══██║██║╚██╗██║"
print "██║ ██║ ██║ ╚██████╗██║ ███████║╚██████╗██║ ██║██║ ╚████║"
print "╚═╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚══════╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═══╝"
print " "
baner()
target_host = raw_input("Enter target host: ")
target_port = int(input("Enter target port: "))
print "Start scan"
#criando um objeto socket
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
#conectando o cliente
client.connect((target_host, target_port))
#enviando alguns dados
client.send("GET / HTTP/1.1\r\nHost: google.com\r\n\r\n")
#recebendo alguns dados
response = client.recv(4096)
print response