Skip to content

Commit c653362

Browse files
committed
Oops removing debug prints
1 parent c695f42 commit c653362

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

modules/auxiliary/server/icmp_exfil.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ def run
9898

9999
def icmp_listener
100100
# start icmp listener
101-
$stderr.puts "Starting for real"
102101

103102
print_status("ICMP Listener started on #{@interface} (#{@iface_ip}). Monitoring for trigger packet containing #{datastore['START_TRIGGER']}")
104103
if datastore['FNAME_IN_PACKET']
@@ -115,8 +114,6 @@ def icmp_listener
115114
cap.stream.each do | pkt |
116115
packet = PacketFu::Packet.parse(pkt)
117116
data = packet.payload[4..-1]
118-
$stderr.puts packet.inspect
119-
$stderr.puts packet.inspect_hex
120117

121118
if packet.is_icmp? and data =~ /#{datastore['START_TRIGGER']}/
122119
# start of new file detected

0 commit comments

Comments
 (0)