Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
ruby-eventmachine /
examples /
old /
[ HOME SHELL ]
Name
Size
Permission
Action
ex_channel.rb
1.11
KB
-rw-r--r--
ex_queue.rb
44
B
-rw-r--r--
ex_tick_loop_array.rb
221
B
-rw-r--r--
ex_tick_loop_counter.rb
527
B
-rw-r--r--
helper.rb
86
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ex_tick_loop_counter.rb
require File.dirname(__FILE__) + '/helper' class TickCounter attr_reader :start_time, :count def initialize reset @tick_loop = EM.tick_loop(method(:tick)) end def reset @count = 0 @start_time = EM.current_time end def tick @count += 1 end def rate @count / (EM.current_time - @start_time) end end period = 5 EM.run do counter = TickCounter.new EM.add_periodic_timer(period) do puts "Ticks per second: #{counter.rate} (mean of last #{period}s)" counter.reset end end
Close