Skip to content

Commit 636d815

Browse files
committed
Land rapid7#5355, emergency fix for Meterpreter UUIDs
2 parents 829f842 + 37e4d71 commit 636d815

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/msf/base/sessions/meterpreter.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,9 @@ def is_valid_session?(timeout=10)
307307

308308
begin
309309
self.machine_id = self.core.machine_id(timeout)
310-
self.payload_uuid ||= self.core.uuid(timeout)
310+
# This is causing breakages thanks to Meterpeter not doing what it should
311+
# be doing with the uuid.
312+
#self.payload_uuid ||= self.core.uuid(timeout)
311313

312314
return true
313315
rescue ::Rex::Post::Meterpreter::RequestError

0 commit comments

Comments
 (0)