--- webinject.pl.orig 2007-02-01 14:30:41.000000000 -0500 +++ webinject.pl 2007-02-01 14:30:01.000000000 -0500 @@ -595,7 +595,7 @@ if ($case{posttype}) { if ($case{posttype} =~ m~application/x-www-form-urlencoded~) { httppost_form_urlencoded(); } elsif ($case{posttype} =~ m~multipart/form-data~) { httppost_form_data(); } - elsif (($case{posttype} =~ m~text/xml~) or ($case{posttype} =~ m~application/soap+xml~)) { httppost_xml(); } + elsif (($case{posttype} =~ m~text/xml~) or ($case{posttype} =~ m~application/soap\+xml~)) { httppost_xml(); } else { print STDERR qq|ERROR: Bad Form Encoding Type, I only accept "application/x-www-form-urlencoded", "multipart/form-data", "text/xml", "application/soap+xml" \n|; } } else {