You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This section should also tell us any relevant information about the
environment; for example, if an exploit that used to work is failing,
tell us the victim operating system and service versions.
Expected behavior
No errors are expected to be reported
Current behavior
Get an error "NOTE: Gem::Platform.match is deprecated; use Gem::Platform.match_spec? or match_gem? instead. It will be removed in Rubygems 4" on many gems
Metasploit version
a27d491bf80251fbb3329e0c1a1a75d8f91fadb4 Land #19491, Fix a crash in lib/msf/core/payload/php.rb
Additional Information
Error can be fixed with
find . -type f -exec sed -i 's/Gem::Platform\.match/Gem::Platform\.match_spec?/g' {} +
The text was updated successfully, but these errors were encountered:
Steps to reproduce
How'd you do it?
1.msfdb start, or msfconsole ...
This section should also tell us any relevant information about the
environment; for example, if an exploit that used to work is failing,
tell us the victim operating system and service versions.
Expected behavior
No errors are expected to be reported
Current behavior
Get an error "NOTE: Gem::Platform.match is deprecated; use Gem::Platform.match_spec? or match_gem? instead. It will be removed in Rubygems 4" on many gems
Metasploit version
a27d491bf80251fbb3329e0c1a1a75d8f91fadb4 Land #19491, Fix a crash in lib/msf/core/payload/php.rb
Additional Information
Error can be fixed with
find . -type f -exec sed -i 's/Gem::Platform\.match/Gem::Platform\.match_spec?/g' {} +
The text was updated successfully, but these errors were encountered: