From 5667cffb77d2e5f1a17ec495c04ea440b9a9a2e9 Mon Sep 17 00:00:00 2001 From: Chris John Riley Date: Tue, 20 Nov 2012 09:06:15 +0100 Subject: [PATCH] Fixed typos --- modules/auxiliary/server/icmp_exfil.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/auxiliary/server/icmp_exfil.rb b/modules/auxiliary/server/icmp_exfil.rb index 680b4556a4..0489983a27 100644 --- a/modules/auxiliary/server/icmp_exfil.rb +++ b/modules/auxiliary/server/icmp_exfil.rb @@ -149,7 +149,7 @@ class Metasploit3 < Msf::Auxiliary icmp_response, contents = icmp_packet(packet, datastore['RESP_START']) if not icmp_response - raise RuntimeError ,"Could not build ICMP resonse" + raise RuntimeError ,"Could not build ICMP response" else # send response packet icmp_pkt send_icmp(icmp_response, contents) @@ -168,7 +168,7 @@ class Metasploit3 < Msf::Auxiliary icmp_response, contents = icmp_packet(packet, datastore['RESP_END']) if not icmp_response - raise RuntimeError , "Could not build ICMP resonse" + raise RuntimeError , "Could not build ICMP response" else # send response packet icmp_pkt send_icmp(icmp_response, contents) @@ -188,7 +188,7 @@ class Metasploit3 < Msf::Auxiliary icmp_response, contents = icmp_packet(packet, datastore['RESP_CONT']) if not icmp_response - raise RuntimeError , "Could not build ICMP resonse" + raise RuntimeError , "Could not build ICMP response" else # send response packet icmp_pkt send_icmp(icmp_response, contents)