CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/util/windows_registry.rb
Views: 1904
1
module Msf::Util::WindowsRegistry
2
3
def self.parse(hive_data, name: nil, root: nil)
4
RegistryParser.new(hive_data, name: name, root: root)
5
end
6
7
end
8
9