diff --git a/lib/msf/core/post/file.rb b/lib/msf/core/post/file.rb index 16ed619344..8cbe7640c0 100644 --- a/lib/msf/core/post/file.rb +++ b/lib/msf/core/post/file.rb @@ -143,7 +143,7 @@ module Msf::Post::File # @return [Boolean] true if +path+ exists and is writable # def writable?(path) - raise "writable?' method does not support Windows systems" if session.platform == 'windows' + raise "`writable?' method does not support Windows systems" if session.platform == 'windows' cmd_exec("test -w '#{path}' && echo true").to_s.include? 'true' end