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 /
ruby18 /
share /
ri /
1.8 /
system /
Process /
Delete
Unzip
Name
Size
Permission
Date
Action
GID
[ DIR ]
drwxr-xr-x
2026-02-18 15:11
Status
[ DIR ]
drwxr-xr-x
2026-02-18 15:11
Sys
[ DIR ]
drwxr-xr-x
2026-02-18 15:11
UID
[ DIR ]
drwxr-xr-x
2026-02-18 15:11
abort-c.yaml
395
B
-rw-r--r--
2023-07-26 19:18
cdesc-Process.yaml
3.85
KB
-rw-r--r--
2023-07-26 19:18
detach-c.yaml
1.91
KB
-rw-r--r--
2023-07-26 19:18
egid%3d-c.yaml
315
B
-rw-r--r--
2023-07-26 19:18
egid-c.yaml
454
B
-rw-r--r--
2023-07-26 19:18
euid%3d-c.yaml
302
B
-rw-r--r--
2023-07-26 19:18
euid-c.yaml
424
B
-rw-r--r--
2023-07-26 19:18
exec-c.yaml
1.22
KB
-rw-r--r--
2023-07-26 19:18
exit%21-c.yaml
421
B
-rw-r--r--
2023-07-26 19:18
exit-c.yaml
1.35
KB
-rw-r--r--
2023-07-26 19:18
fork-c.yaml
1.04
KB
-rw-r--r--
2023-07-26 19:18
getpgid-c.yaml
421
B
-rw-r--r--
2023-07-26 19:18
getpgrp-c.yaml
433
B
-rw-r--r--
2023-07-26 19:18
getpriority-c.yaml
863
B
-rw-r--r--
2023-07-26 19:18
getrlimit-c.yaml
868
B
-rw-r--r--
2023-07-26 19:18
gid%3d-c.yaml
269
B
-rw-r--r--
2023-07-26 19:18
gid-c.yaml
416
B
-rw-r--r--
2023-07-26 19:18
groups%3d-c.yaml
536
B
-rw-r--r--
2023-07-26 19:18
groups-c.yaml
417
B
-rw-r--r--
2023-07-26 19:18
initgroups-c.yaml
837
B
-rw-r--r--
2023-07-26 19:18
kill-c.yaml
963
B
-rw-r--r--
2023-07-26 19:18
maxgroups%3d-c.yaml
330
B
-rw-r--r--
2023-07-26 19:18
maxgroups-c.yaml
399
B
-rw-r--r--
2023-07-26 19:18
pid-c.yaml
368
B
-rw-r--r--
2023-07-26 19:18
ppid-c.yaml
609
B
-rw-r--r--
2023-07-26 19:18
setpgid-c.yaml
366
B
-rw-r--r--
2023-07-26 19:18
setpgrp-c.yaml
299
B
-rw-r--r--
2023-07-26 19:18
setpriority-c.yaml
605
B
-rw-r--r--
2023-07-26 19:18
setrlimit-c.yaml
2.41
KB
-rw-r--r--
2023-07-26 19:18
setsid-c.yaml
457
B
-rw-r--r--
2023-07-26 19:18
times-c.yaml
473
B
-rw-r--r--
2023-07-26 19:18
uid%3d-c.yaml
312
B
-rw-r--r--
2023-07-26 19:18
uid-c.yaml
414
B
-rw-r--r--
2023-07-26 19:18
wait-c.yaml
2.17
KB
-rw-r--r--
2023-07-26 19:18
wait2-c.yaml
772
B
-rw-r--r--
2023-07-26 19:18
waitall-c.yaml
878
B
-rw-r--r--
2023-07-26 19:18
waitpid-c.yaml
2.18
KB
-rw-r--r--
2023-07-26 19:18
waitpid2-c.yaml
778
B
-rw-r--r--
2023-07-26 19:18
Save
Rename
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: Initiates the termination of the Ruby script by raising the <tt>SystemExit</tt> exception. This exception may be caught. The optional parameter is used to return a status code to the invoking environment. - !ruby/struct:SM::Flow::VERB body: " begin\n exit\n puts "never get here"\n rescue SystemExit\n puts "rescued a SystemExit exception"\n end\n puts "after begin block"\n" - !ruby/struct:SM::Flow::P body: <em>produces:</em> - !ruby/struct:SM::Flow::VERB body: " rescued a SystemExit exception\n after begin block\n" - !ruby/struct:SM::Flow::P body: Just prior to termination, Ruby executes any <tt>at_exit</tt> functions (see Kernel::at_exit) and runs any object finalizers (see ObjectSpace::define_finalizer). - !ruby/struct:SM::Flow::VERB body: " at_exit { puts "at_exit function" }\n ObjectSpace.define_finalizer("string", proc { puts "in finalizer" })\n exit\n" - !ruby/struct:SM::Flow::P body: <em>produces:</em> - !ruby/struct:SM::Flow::VERB body: " at_exit function\n in finalizer\n" full_name: Process::exit is_singleton: true name: exit params: | exit(integer=0) Kernel::exit(integer=0) Process::exit(integer=0) visibility: public