Land #5649, Fix undefined sysinfo method error in meterpreter.rb

bug/bundler_fix
wchen-r7 2015-07-15 23:27:02 -05:00
commit 18ca617c23
No known key found for this signature in database
GPG Key ID: 2384DB4EF06F730B
1 changed files with 3 additions and 3 deletions

View File

@ -375,9 +375,9 @@ class Meterpreter < Rex::Post::Meterpreter::Client
:host => self,
:workspace => wspace,
:data => {
:name => sysinfo["Computer"],
:os => sysinfo["OS"],
:arch => sysinfo["Architecture"],
:name => sys.config.sysinfo["Computer"],
:os => sys.config.sysinfo["OS"],
:arch => sys.config.sysinfo["Architecture"],
}
})