MSF filter stub added

git-svn-id: https://beef.googlecode.com/svn/trunk@710 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
wade@bindshell.net
2011-01-22 20:26:29 +00:00
parent bd496d34e9
commit 3ca4cc284c

12
lib/filter/msf.rb Normal file
View File

@@ -0,0 +1,12 @@
module BeEF
module Filter
def self.is_valid_msf_payload_name?(name)
return false if only?("a-z_/", name)
true
end
end
end