mirror of
https://github.com/fooflington/wordsearch.git
synced 2025-04-18 23:09:16 +00:00
.
This commit is contained in:
parent
e7e69263c7
commit
fddec0d82c
@ -5,7 +5,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>SQLite Demo</title>
|
<title>Database dump</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<table border="1">
|
<table border="1">
|
||||||
|
22
war/env.jsp
Normal file
22
war/env.jsp
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head></head>
|
||||||
|
<body>
|
||||||
|
<h1>Environment</h1>
|
||||||
|
<ul>
|
||||||
|
<li>You are connecting from: <%= request.getRemoteHost() %> (<%= request.getRemoteAddr() %>)</li>
|
||||||
|
<li>If present your X-Forwarded-For header is: <%= request.getHeader("X-Forwarded-For") %></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h2>Header dump</h2>
|
||||||
|
<pre>
|
||||||
|
<%
|
||||||
|
for (java.util.Enumeration<String> headers = request.getHeaderNames(); headers.hasMoreElements(); ) {
|
||||||
|
String h = headers.nextElement();
|
||||||
|
%>
|
||||||
|
<%= h %>=<%= request.getHeader(h) %>
|
||||||
|
<%
|
||||||
|
}
|
||||||
|
%>
|
||||||
|
</pre>
|
||||||
|
</body>
|
Loading…
x
Reference in New Issue
Block a user