Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.144
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpanel /
ea-tomcat85 /
Delete
Unzip
Name
Size
Permission
Date
Action
bin
[ DIR ]
drwxr-xr-x
2024-01-16 19:30
conf
[ DIR ]
drwxr-xr-x
2023-12-21 14:02
lib
[ DIR ]
drwxr-xr-x
2024-01-16 19:30
run
[ DIR ]
drwxr-xr-x
2025-09-07 15:06
temp
[ DIR ]
drwxr-xr-x
2024-01-16 19:30
user-conf
[ DIR ]
drwxr-xr-x
2024-01-16 19:30
webapps
[ DIR ]
drwxr-xr-x
2023-12-21 14:02
work
[ DIR ]
drwxr-xr-x
2023-12-21 14:02
BUILDING.txt
19.52
KB
-rw-r--r--
2023-12-21 14:02
CONTRIBUTING.md
6.06
KB
-rw-r--r--
2023-12-21 14:02
LICENSE
55.67
KB
-rw-r--r--
2023-12-21 14:02
NOTICE
1.69
KB
-rw-r--r--
2023-12-21 14:02
README.APACHE-PROXY
127
B
-rw-r--r--
2023-12-21 14:02
README.FASTERSTARTUP
117
B
-rw-r--r--
2023-12-21 14:02
README.SECURITY
132
B
-rw-r--r--
2023-12-21 14:02
README.SHARED-SERVICE-MANAGEMENT
1.49
KB
-rw-r--r--
2023-12-21 14:02
README.USER-INSTANCE
209
B
-rw-r--r--
2023-12-21 14:02
README.USER-SERVICE-MANAGEMENT
548
B
-rw-r--r--
2023-12-21 14:02
README.md
3.32
KB
-rw-r--r--
2023-12-21 14:02
RELEASE-NOTES
6.97
KB
-rw-r--r--
2023-12-21 14:02
RUNNING.txt
16.12
KB
-rw-r--r--
2023-12-21 14:02
sample.ea-tomcat85.initd
3.17
KB
-rw-r--r--
2023-12-21 14:02
sample.ea-tomcat85.logrotate
199
B
-rw-r--r--
2023-12-21 14:02
sample.ea-tomcat85.service
564
B
-rw-r--r--
2023-12-21 14:02
test.jsp
2.12
KB
-rw-r--r--
2023-12-21 14:02
Save
Rename
<html> <head> <title>Test JSP Page</title> <style type="text/css"> dt { float: left; width: 30%; text-align: right; padding: .25em; clear: left; font-weight: bold; } dd { float: left; width: 60%; padding: .25em 0; } dl:after {content:"";display:table;clear:both;} // will not work when there are mutli-dt per dd or multi-dd per dt </style> </head> <body> <h1>Test JSP Page</h1> <p>This is a page to verify that .jsp support has been enabled</p> <dl> <dt>Date</dt><dd><%= new java.util.Date() %></dd> <dt>Remote Address</dt><dd><%= request.getRemoteAddr() %></dd> <dt>Request Method</dt><dd><%= request.getMethod() %></dd> <dt>Servlet Path</dt><dd><%= request.getServletPath() %></dd> <dt>Tomcat Version</dt><dd><%= application.getServerInfo() %></dd> <dt>Servlet Specification Version</dt><dd><%= application.getMajorVersion() %>.<%= application.getMinorVersion() %></dd> <dt>JSP Version</dt><dd><%= JspFactory.getDefaultFactory().getEngineInfo().getSpecificationVersion() %></dd> <dt>JAVA_HOME</dt><dd><%= System.getenv("JAVA_HOME") %></dd> <dt>CATALINA_HOME</dt><dd><%= System.getenv("CATALINA_HOME") %></dd> <dt>CATALINA_BASE</dt><dd><%= System.getenv("CATALINA_BASE") %></dd> <dt>CATALINA_OPTS</dt><dd><%= System.getenv("CATALINA_OPTS") %></dd> <dt>USER</dt><dd><%= System.getenv("USER") %></dd> <dt>HOME</dt><dd><%= System.getenv("HOME") %></dd> <dt>Output from `id`</dt><dd><%@ page import="java.util.*,java.io.*"%> <% Process p = Runtime.getRuntime().exec("id"); OutputStream outs = p.getOutputStream(); InputStream ins = p.getInputStream(); DataInputStream dis = new DataInputStream(ins); String disrl = dis.readLine(); while ( disrl != null ) { out.println(disrl); disrl = dis.readLine(); } %></dd> </dl> </body> </html>