mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-05 14:57:30 +01:00
Fix to correct the IP TTL of all raw modules - these were defaulting to 0. Reported by Job Kibler
git-svn-id: file:///home/svn/framework3/trunk@7397 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
parent
1d5f1e5f69
commit
2075377fc8
@ -171,6 +171,7 @@ class Metasploit3 < Msf::Auxiliary
|
||||
n.l3.dst_ip = dhost
|
||||
n.l3.protocol = 0x6
|
||||
n.l3.id = rand(0x10000)
|
||||
n.l3.ttl = 255
|
||||
|
||||
n.l4 = Racket::TCP.new
|
||||
n.l4.src_port = sport
|
||||
|
@ -113,6 +113,7 @@ class Metasploit3 < Msf::Auxiliary
|
||||
n.l3.dst_ip = dhost
|
||||
n.l3.protocol = 0x6
|
||||
n.l3.id = rand(0x10000)
|
||||
n.l3.ttl = 255
|
||||
|
||||
n.l4 = Racket::TCP.new
|
||||
n.l4.src_port = sport
|
||||
|
@ -114,6 +114,7 @@ class Metasploit3 < Msf::Auxiliary
|
||||
n.l3.dst_ip = dhost
|
||||
n.l3.protocol = 0x6
|
||||
n.l3.id = rand(0x10000)
|
||||
n.l3.ttl = 255
|
||||
|
||||
n.l4 = Racket::TCP.new
|
||||
n.l4.src_port = sport
|
||||
|
@ -113,6 +113,7 @@ class Metasploit3 < Msf::Auxiliary
|
||||
n.l3.dst_ip = dhost
|
||||
n.l3.protocol = 0x6
|
||||
n.l3.id = rand(0x10000)
|
||||
n.l3.ttl = 255
|
||||
|
||||
n.l4 = Racket::TCP.new
|
||||
n.l4.src_port = sport
|
||||
|
@ -60,6 +60,7 @@ class Metasploit3 < Msf::Auxiliary
|
||||
n.l3.dst_ip = dst
|
||||
n.l3.protocol = 0x6
|
||||
n.l3.id = rand(0x10000)
|
||||
n.l3.ttl = 255
|
||||
|
||||
n.l4 = Racket::TCP.new
|
||||
n.l4.src_port = datastore['CPORT'].to_i
|
||||
@ -80,6 +81,7 @@ class Metasploit3 < Msf::Auxiliary
|
||||
n.l3.dst_ip = dst
|
||||
n.l3.protocol = 0x1
|
||||
n.l3.id = rand(0x10000)
|
||||
n.l3.ttl = 255
|
||||
|
||||
n.l4 = Racket::ICMP.new
|
||||
n.l4.type = 8
|
||||
|
Loading…
Reference in New Issue
Block a user