We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c695f42 commit c653362Copy full SHA for c653362
modules/auxiliary/server/icmp_exfil.rb
@@ -98,7 +98,6 @@ def run
98
99
def icmp_listener
100
# start icmp listener
101
- $stderr.puts "Starting for real"
102
103
print_status("ICMP Listener started on #{@interface} (#{@iface_ip}). Monitoring for trigger packet containing #{datastore['START_TRIGGER']}")
104
if datastore['FNAME_IN_PACKET']
@@ -115,8 +114,6 @@ def icmp_listener
115
114
cap.stream.each do | pkt |
116
packet = PacketFu::Packet.parse(pkt)
117
data = packet.payload[4..-1]
118
- $stderr.puts packet.inspect
119
- $stderr.puts packet.inspect_hex
120
121
if packet.is_icmp? and data =~ /#{datastore['START_TRIGGER']}/
122
# start of new file detected
0 commit comments