Skip to content

Commit 430227a

Browse files
msftidy cleanup
1 parent 082bba3 commit 430227a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/auxiliary/server/icmp_exfil.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def initialize
2525
2626
To use this module you will need to send an initial ICMP echo request containing the
2727
specific start trigger (defaults to '^BOF') this can be followed by the filename being sent (or
28-
a random filename can be assisnged). All data received from this source will automatically
28+
a random filename can be assisnged). All data received from this source will automatically
2929
be added to the receive buffer until an ICMP echo request containing a specific end trigger
3030
(defaults to 'EOL') is received.
3131
},
@@ -80,7 +80,7 @@ def run
8080
@record_data = ''
8181

8282
if datastore['PROMISC']
83-
print_status("Warning: Promiscuous mode enabled. This may cause issues!")
83+
print_status("Warning: Promiscuous mode enabled. This may cause issues!")
8484
end
8585

8686
# start icmp listener process - loop
@@ -113,7 +113,7 @@ def icmplistener
113113

114114
if packet.is_icmp? and data =~ /#{datastore['START_TRIGGER']}/
115115
# start of new file detected
116-
vprint_status("#{Time.now}: ICMP (type %d code %d) SRC:%s DST:%s" %
116+
vprint_status("#{Time.now}: ICMP (type %d code %d) SRC:%s DST:%s" %
117117
[packet.icmp_type, packet.icmp_code, packet.ip_saddr, packet.ip_daddr])
118118

119119
# detect and warn if system is responding to ICMP echo requests

0 commit comments

Comments
 (0)