-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtcp_hexdump.py
executable file
·68 lines (60 loc) · 2.03 KB
/
tcp_hexdump.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python2
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import ssl, testrun, traceback
from termcolor import colored
from utils import switchtossl
def recv_and_split_blocks(socket, length):
buff = ''
try:
while True:
c = socket.recv(1)
if c == '':
break
buff += c
if (len(buff) % length) == 0:
yield buff
buff = ''
except ssl.SSLError as err:
print("SSL error: {}".format(err.reason))
pass
except Exception as err:
#print(traceback.format_exc())
pass
if len(buff) != 0:
yield buff
def handle_tcp_hexdump(socket, dstport):
FILTER = ''.join([(len(repr(chr(x))) == 3) and chr(x) or '.' for x in range(256)])
length = 16
c = 0
for chars in recv_and_split_blocks(socket, length):
hexstr = ' '.join(["%02x" % ord(x) for x in chars])
printable = ''.join(["%s" % ((ord(x) <= 127 and FILTER[ord(x)]) or '.') for x in chars])
print colored("%04x %-*s %-*s" % (c, length*3, hexstr, length, printable), 'red', 'on_yellow')
c += len(chars)
print colored("%04x" % c, 'red', 'on_yellow')
try:
print("-- TCP TRANSPORT CLOSED --")
socket.close()
except:
pass
def handle_tcp_hexdump_ssl(socket, dstport):
socket = switchtossl(socket)
if socket:
handle_tcp_hexdump(socket, dstport)
else:
print("SSL handshake failed")
if __name__ == "__main__":
#testrun.run_tcp(8888, 8888, handle_tcp_hexdump)
testrun.run_tcp(8889, 8889, handle_tcp_hexdump_ssl)