Correct space movement in lib/anemone/core.rb

GSoC/Meterpreter_Web_Console
gazayas 2018-06-13 19:16:35 +09:00
parent e67931950e
commit 9dec955f1a
1 changed files with 2 additions and 2 deletions

View File

@ -299,8 +299,8 @@ module Anemone
# Kills all active threads
#
def shutdown
@tentacles.each {|t| t.kill rescue nil }
@pages = nil
@tentacles.each {|t| t.kill rescue nil }
@pages = nil
end
end