Initial run at #222

git-svn-id: https://beef.googlecode.com/svn/trunk@717 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
scotty.b.brown@gmail.com
2011-01-25 22:15:26 +00:00
parent e7f88557f5
commit 2184df5418

View File

@@ -33,7 +33,7 @@ module BeEF
# check if valid command module datastore value
def self.is_valid_command_module_datastore_param?(str)
return false if BeEF::Filter.has_null?(str)
return false if BeEF::Filter.has_non_printable_char?(str)
return BeEF::Filter.has_valid_key_chars?(str)
true
end