Add remote webservice deletion notice

This commit is contained in:
adfoster-r7
2023-10-09 11:38:57 +01:00
parent 70ae201d5f
commit edfa1e6011
+10
View File
@@ -339,6 +339,10 @@ def reinit_db
init_db
end
def print_webservice_removal_prompt
$stderr.puts "#{'[WARNING]'.red} The remote web service is being removed. Does this impact you? React here: https://github.com/rapid7/metasploit-framework/issues/18439"
end
class WebServicePIDStatus
RUNNING = 0
INACTIVE = 1
@@ -1062,6 +1066,9 @@ if $PROGRAM_NAME == __FILE__
end
if @options[:component] == :all
@components.each { |component|
if component == :webservice
3.times { print_webservice_removal_prompt }
end
puts '===================================================================='
puts "Running the '#{command}' command for the #{component}:"
invoke_command(commands, component.to_sym, command)
@@ -1070,6 +1077,9 @@ if $PROGRAM_NAME == __FILE__
}
else
puts "Running the '#{command}' command for the #{@options[:component]}:"
if @options[:component] == :webservice
3.times { print_webservice_removal_prompt }
end
invoke_command(commands, @options[:component], command)
end
end