CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/util/windows_registry.rb
Views: 11779
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