Land #2590, gsub nil fix for mimikatz
commit
665f6c3e35
|
@ -106,7 +106,7 @@ class Console::CommandDispatcher::Mimikatz
|
||||||
)
|
)
|
||||||
|
|
||||||
accounts.each do |acc|
|
accounts.each do |acc|
|
||||||
table << [acc[:authid], acc[:package], acc[:domain], acc[:user], acc[:password].gsub("\n","")]
|
table << [acc[:authid], acc[:package], acc[:domain], acc[:user], (acc[:password] || "").gsub("\n","")]
|
||||||
end
|
end
|
||||||
|
|
||||||
print_line table.to_s
|
print_line table.to_s
|
||||||
|
|
Loading…
Reference in New Issue