Oops removing debug prints

bug/bundler_fix
Tod Beardsley 2012-12-27 14:58:52 -06:00
parent c695f429d5
commit c6533621a0
1 changed files with 0 additions and 3 deletions

View File

@ -98,7 +98,6 @@ class Metasploit3 < Msf::Auxiliary
def icmp_listener
# start icmp listener
$stderr.puts "Starting for real"
print_status("ICMP Listener started on #{@interface} (#{@iface_ip}). Monitoring for trigger packet containing #{datastore['START_TRIGGER']}")
if datastore['FNAME_IN_PACKET']
@ -115,8 +114,6 @@ class Metasploit3 < Msf::Auxiliary
cap.stream.each do | pkt |
packet = PacketFu::Packet.parse(pkt)
data = packet.payload[4..-1]
$stderr.puts packet.inspect
$stderr.puts packet.inspect_hex
if packet.is_icmp? and data =~ /#{datastore['START_TRIGGER']}/
# start of new file detected