Initial commit

This commit is contained in:
2025-09-22 21:02:16 +02:00
commit 8b7207c2e7
151 changed files with 10560 additions and 0 deletions

38
.gitignore vendored Normal file
View File

@@ -0,0 +1,38 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store

3
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

7
.idea/discord.xml generated Normal file
View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DiscordProjectSettings">
<option name="show" value="PROJECT_FILES" />
<option name="description" value="" />
</component>
</project>

7
.idea/encodings.xml generated Normal file
View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding">
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
</component>
</project>

14
.idea/misc.xml generated Normal file
View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="MavenProjectsManager">
<option name="originalFiles">
<list>
<option value="$PROJECT_DIR$/pom.xml" />
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_23" default="true" project-jdk-name="23" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

6
.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

62
LICENSE Normal file
View File

@@ -0,0 +1,62 @@
Open Autonomous Public License (OAPL) v1.0
Copyright (C) 2024-2025 Open Autonomous Connection (OAC)
Projekt-URL: https://github.com/Open-Autonomous-Connection/
---
1. Nutzungsrechte
Diese Software darf sowohl für private als auch kommerzielle Zwecke genutzt werden. Die Nutzung ist unter den Bedingungen dieser Lizenz gestattet.
---
2. Verkaufsverbot
Es ist nicht gestattet, diese Software oder abgeleitete Werke davon zu verkaufen oder kommerziell zu vertreiben.
Dies umfasst auch jede Form der direkten oder indirekten Monetarisierung der Software selbst.
Es ist gestattet, die Software im Rahmen von Dienstleistungen kommerziell zu nutzen, solange der Quellcode und die Originaldateien kostenlos verfügbar bleiben und nicht gegen Entgelt verkauft oder monetarisiert werden.
Jede Form der Monetarisierung der Software selbst, wie der Verkauf oder die Lizenzierung der Software, ist untersagt.
---
3. Offenlegung des Quellcodes
Die Software ist dauerhaft quelloffen. Der vollständige Quellcode muss bei jeder Verbreitung, auch in geänderter Form, mitgeliefert oder öffentlich zugänglich gemacht werden.
Jede Version, auch veränderte, muss einen klar sichtbaren Verweis auf das Originalprojekt enthalten:
→ https://github.com/Open-Autonomous-Connection/
---
4. Weitergabe & Lizenzvererbung
Die Software darf frei kopiert, verteilt und verändert werden, unter folgenden Bedingungen:
- Die Original-Lizenz (OAPL v1.0) muss vollständig und unverändert mitgeliefert werden.
- Alle Änderungen am Quellcode müssen klar kenntlich gemacht werden (z.B. durch Kommentare oder Änderungsprotokolle).
- Abgeleitete Werke müssen unter derselben Lizenz (OAPL v1.0) veröffentlicht werden, es sei denn, die Lizenzierung erfolgt in einem Kontext,
in dem dies durch geltendes Recht oder technische Einschränkungen nicht möglich ist. In diesem Fall muss der Quellcode der Änderungen weiterhin offen und zugänglich gemacht werden.
- Es dürfen keine zusätzlichen Einschränkungen oder Bedingungen auferlegt werden, die den Bedingungen dieser Lizenz widersprechen.
---
5. Keine proprietäre Nutzung
Die Software oder ihre abgeleiteten Werke dürfen nicht in proprietäre Software integriert oder unter einer Lizenz weitergegeben werden, die die Bedingungen dieser Lizenz einschränkt oder die Offenlegung des Quellcodes unterlässt.
---
6. Keine Veränderung dieser Lizenz
Diese Lizenz darf nicht verändert oder durch andere Lizenzen ersetzt werden. Eine Modifikation oder Re-Lizenzierung ist ausdrücklich untersagt.
---
7. Haftungsausschluss ("as-is")
DIE SOFTWARE WIRD 'WIE BESEHEN' BEREITGESTELLT, OHNE AUSDRÜCKLICHE ODER IMPLIZIERTE GARANTIEN, EINSCHLIESSLICH, ABER NICHT BESCHRÄNKT AUF GARANTIEN DER MARKTGÄNGIGKEIT,
DER EIGNUNG FÜR EINEN BESTIMMTEN ZWECK UND DER NICHTVERLETZUNG VON RECHTEN DRITTER. SOWEIT ES GESCHÄFTSRECHTLICH ZULÄSSIG IST,
WIRD DIE HAFTUNG DER AUTOREN FÜR SCHÄDEN ODER VERLUSTE AUFGRUND DER NUTZUNG DER SOFTWARE AUSGESCHLOSSEN.
---
8. Salvatorische Klausel
Sollte eine Bestimmung dieser Lizenz als unwirksam, undurchsetzbar oder nicht durchsetzbar erklärt werden,
bleibt die Gültigkeit der übrigen Bestimmungen davon unberührt. In diesem Fall wird die unwirksame Klausel durch eine wirksame und durchsetzbare Bestimmung ersetzt,
die dem ursprünglichen wirtschaftlichen Zweck der unwirksamen Bestimmung am nächsten kommt.
---
Ende der Lizenzbedingungen.

42
README.MD Normal file
View File

@@ -0,0 +1,42 @@
# Open Autonomous Connection WebServer
This is the WebServer for our Open Autonomous Connection project.<br />
Feel free to join our Discord.
<br />
## License Notice
This project (OAC) is licensed under the [Open Autonomous Public License (OAPL)](https://github.com/Open-Autonomous-Connection/OAPL/blob/main/LICENSE).
**Third-party components:**
- *UnlegitLibrary* is authored by the same copyright holder and is used here under a special agreement:
While UnlegitLibrary is generally distributed under the [GNU GPLv3](https://github.com/UnlegitDqrk/UnlegitLibrary/blob/master/LICENSE),
it is additionally licensed under OAPL **exclusively for the OAC project**.
Therefore, within OAC, the OAPL terms apply to UnlegitLibrary as well.
# Bugs/Problems
# In progress
# TODO
# Maven
### pom.xml
```
<dependency>
<groupId>github.openautonomousconnection</groupId>
<artifactId>protocol</artifactId>
<version>VERSION</version>
</dependency>
```
### Repository:
```
<repositories>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/open-autonomous-connection/protocol</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
```

123
pom.xml Normal file
View File

@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>github.openautonomousconnection</groupId>
<artifactId>WebServer</artifactId>
<version>1.0-SNAPSHOT</version>
<organization>
<name>Open Autonomous Connection</name>
<url>https://open-autonomous-connection.org/</url>
</organization>
<url>https://open-autonomous-connection.org/webserver/</url>
<description>The WebServer for the Open Autonomous Connection Project</description>
<properties>
<maven.compiler.source>23</maven.compiler.source>
<maven.compiler.target>23</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<profiles>
<profile>
<id>github</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
</profiles>
<developers>
<developer>
<name>UnlegitDqrk</name>
<organization>Open Autonomous Connection</organization>
<organizationUrl>https://open-autonomous-connection.org/</organizationUrl>
<url>https://unlegitdqrk.dev/</url>
<roles>
<role>Owner</role>
<role>Head Developer</role>
</roles>
</developer>
<developer>
<name>Maple</name>
<organization>Open Autonomous Connection</organization>
<organizationUrl>https://open-autonomous-connection.org/</organizationUrl>
<url>https://niumaple.carrd.co/</url>
<roles>
<role>Owner</role>
<role>Head Developer</role>
</roles>
</developer>
</developers>
<issueManagement>
<system>GitHub Issue Tracker</system>
<url>https://github.com/Open-Autonomous-Connection/WebServer/issues</url>
</issueManagement>
<licenses>
<license>
<name>Open Autonomous Public License</name>
<url>https://github.com/Open-Autonomous-Connection/OAPL/blob/main/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<repositories>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/open-autonomous-connection/protocol</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>github.openautonomousconnection</groupId>
<artifactId>protocol</artifactId>
<version>1.0.0-BETA.3</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.38</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.13.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-fileupload2-jakarta-servlet6</artifactId>
<version>2.0.0-M4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-fileupload2</artifactId>
<version>2.0.0-M4</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-fileupload2-core</artifactId>
<version>2.0.0-M4</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.20.0</version>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.1.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

2
run/auth.pwd Normal file
View File

@@ -0,0 +1,2 @@
admin:5e884898da28047151d0e56f8dc6292773603d0d6aabbddab8f91d8e5f99f6c7
user:e99a18c428cb38d5f260853678922e03abd8335f

52
run/certificates/ca.key Normal file
View File

@@ -0,0 +1,52 @@
-----BEGIN PRIVATE KEY-----
MIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQC9Uu9/sNevUGr1
k6LI5jdI/HAbsgaS2eFat0mdPKhD0IrDMozhZ1zDh6w/4iOhNC6ypwy0+1l/r6cT
6xL2s3x+DxoaeskMpRD4kd97cE7YrvxXMSwFj5exVnyps03QXFQigZryW5z26xyF
Jw3i6XiHkhpz1fwMKBXynkUROy5IuZu5oTsNko+dcjZWtOI9Tnf0HqmEW8Jrhpjw
JnZX8HBs0Ydd+gr7/nITLF6Eq0Gd1uRupsAOSsZfdXofqgxfVy5CsAyfK/163cnL
BZ5ynKMzqyhxS/9wLQfBLq6499e8w5+5/WHPIZLFeVOfdunudEFmE5aQwjnNBESI
EyaaYlhXQdKhTnAU2JYEg4pnp43DXMxsPeDY/OXDoQAJbuj1ip6jFwIyt8cj6uGv
diFrY1Nqa1Ua2YrN0xRvZ6WioYyrNO7TOkgCC90aop7gxps/ZgYTl2VsTzAtDZXY
mKjc+ZNx5F+h5gLhJMNTbzQ2KweE/7/5ghjHEwc2Z28gh5wOkmK7knuyv1mv4s5Z
UfOXs+Xv0sI4fZiNKyaESoyh4zoHPfUpTMhYPjzpa5g6PDaxs2ewq7Zr0Lvjk12p
+vM6xUeO70RQAK8tftoHmTxZDfh7NxMCnViD1q/2qRLOlSmOyxmH+hmy/4eNkROj
Mn8pyDHPEC3kg0ZuvS/Zutnm+WkXuQIDAQABAoICAAOcd/gWjenZsQkhu7fj0iNX
H//GLEWG0CHPCmXSqxq2+QLhnm0cXr+aLAgRg/xVYmkLbgEWAooE5RsGW1Ngqszn
sCwcMkJ50bAvS9tiK33GuTmbeTx82fOs3lBFAzfTOOOdNR/gD1hXtXT1AOGJvy8C
BKAVrSafi0Btq7903CCumA6OdCUKMo/AdZ8lo7i0TzJduX4sORhpKSvp5kzp6cSq
qr6KWdZaZpcJCOO0aNGq7CJDHkIJqikBLC1/6GRf1FXdLBB1+78LWjsEilpwGtWf
IjjRJfPXei2FvuX4cqnhSRlnb4u05AjN+oJKonCaamn/btpBezrDroqyMCbp2bZs
uxO0PnFTl26LlQSpJlKGRHQiGK+yD/Szw0AbivxsgtIZcpFmDtqm7frs2Sl7uda8
eCe/1OrFWpEv2M8lYU5t0b/vGVpEeum5+LRxLOjIjhCzurfSvZluKEOa2mH+IwAz
ZrkBdMvjzmkOCYWOfQh8AexvS+4uNycoc5RkeeX5rf+wlpHwlgFnr+5Dmw6SthcE
fb6dcpZA9SE9PJ5NbRFHfFwveo2uvM0xPAHczvC87h8E+rAfVJex7eKDWMySGCkM
k9TuD8rjHw2jF2s0IbO6knRDJdQonZPeqIKPDyv7nRMacAtchNgFbiYOxNn+/QyW
4sqOYLfbt6htdVyDv4s1AoIBAQDy/JWYA3V7RMHqZx823N1zpp8aPIjsXo7ELjqn
Cg0bdRRcWSpfeB/70vxxpRoleuOZx1g3EKTSp/Pc9LVdZAu51qBuWIZLgKHkX+yk
rihI5cmYIlKMNOreLglFdS1ZitVdGlmZ+3zbr1jLt/EtU52QGDBPU4o+opxeJ4Ne
4LoGCCi2JAW1Pz2pUvhjoTHS0W0ozvNsjjQ1kve6DZoeidJSw26yDk1yaqawCptI
1O4QdV/rjOyJgF1IUmYt8YcT7qnxYSpU50bsoYuQ9vSvM0ILwXFKuE/nbR40LWnZ
Sw9a+4VpkUfHc3DlCAuFimP/jpDiWWqaMl/+Ju0gF8rwvWhvAoIBAQDHdp7c6IMm
ty0XrXrBsgQcxcvMP131tDL3x43Ls5vSv7vrP/BkmU3Pt9SHYfDdDRcQQU1HkIXI
reCG9vrTUqTSEOPjYvbIMCrn7z84FKL8NqBu0DzBQbLCgbP0cRKKhLn2hxmmfZfn
yF8/opR5c7qNPS1/+CxgLpVytEsU9TTu7lCUef/rduPLk/aalE2t/il5qzQHmydQ
7ecWihL3z1Amzp+sa1tCePktvmG+LVXlZTLirmJtMMZXAf/tXh6gzP6B7rBcwwYE
YdxEZjwCdQd44e/aXmAh916//VKxAJDqkb8cgpbfu0Jrg/2N+Dve3lX9IpZ6YabQ
t+9BsN8s6AZXAoIBAQDxjykodkfUxAYDgYEGiYud7Yc+DfARC+/iGBM2/EcLhNk4
9WuqfUFOl/FfCUN0/zZFKmgIVgOFaHKGtr+WmF8P4M6c5GSdqsNGxhX7oSdrUQWY
uIZX3EOhnSKaamMrIVn7tLZe3iTCQQ+FdtfMt9Nr7KAaPHKy0fWhpKZ1K/PDC1lt
uWHzTWt/aXyFjzp42roqV5Kn2LcOi4y66crNkTYGEUN6v70+gcg0OlclkIka05UI
FpEQIQybWU87XWFr71gDHxV2UnWvyOl2tAuMIOkHxsdaAOFusIvWU09nNbeOO33l
9QfmwFz7U4QgvfOrm49tdncD1BCaGRijTwPxUFsBAoIBAEpWikSYn3CJalPdwtd3
qhKzIQ5BO5p8C1bPV6hoixWTgczeapCDlj1pLNs8BFHONB9Jxyx5z3KIYxrJ55dk
wKrNwrEXTBQ153fDcdNL1aacEVTbZRk9jArz3ganMZrQdqJLnaKwQjIPOnhz9lQB
brB+8Xs1GgzKr8YtLaJk9NJrnTqI8XlnOOTBg3H+/ahwBjMjPGPtTkzaLXr4ALO8
3wlnjpjq9fsjLPMAdlszeETjX4CeL260c+cvhpuHrXCOlfgE5lPcF10Av9/6Hjlo
Nl22DvdanwdpszVoiy4OoPPbV9efT+2YU9vQOGp17pJUWMXb4ys/Q7WcJ55a9gI9
g0cCggEBAL+B6vL4ipi9ioGCePPC4Klew/GTxy3dqJtCw7woHlz76zHJsQqllY8S
wqzcydRvvpkxI8HGNWtMSGiPWePss7qUrAdq0jZh921buXtuD3aqqUjaLDnm3rYz
v844JFJyKhgUqwkXHOeOw9ktsMxpBOsqa0vcYVmZ2dalvFC47b3pHplJmATLgV/6
lCHUXi5HZ53Yd5lyduUuavnWuWnnwbovc4vKBz7zMHb70oQSn/6wx5f7Bbgy1ZSk
7vlNYomNKgl5dtRlphBi3GFxyrE5EDFzis6UX7lNjADZrqYSeBCT8EFBoEfc/eVN
c5RF/V4VtgM7jggSLlUUgO0L2/Hw5bM=
-----END PRIVATE KEY-----

31
run/certificates/ca.pem Normal file
View File

@@ -0,0 +1,31 @@
-----BEGIN CERTIFICATE-----
MIIFazCCA1OgAwIBAgIUQ67NCnk5KBqDD7fHdzKVi+AfRR8wDQYJKoZIhvcNAQEL
BQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoM
GEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0yNTA5MjExMTU2NTlaFw0zNTA5
MTkxMTU2NTlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEw
HwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggIiMA0GCSqGSIb3DQEB
AQUAA4ICDwAwggIKAoICAQC9Uu9/sNevUGr1k6LI5jdI/HAbsgaS2eFat0mdPKhD
0IrDMozhZ1zDh6w/4iOhNC6ypwy0+1l/r6cT6xL2s3x+DxoaeskMpRD4kd97cE7Y
rvxXMSwFj5exVnyps03QXFQigZryW5z26xyFJw3i6XiHkhpz1fwMKBXynkUROy5I
uZu5oTsNko+dcjZWtOI9Tnf0HqmEW8JrhpjwJnZX8HBs0Ydd+gr7/nITLF6Eq0Gd
1uRupsAOSsZfdXofqgxfVy5CsAyfK/163cnLBZ5ynKMzqyhxS/9wLQfBLq6499e8
w5+5/WHPIZLFeVOfdunudEFmE5aQwjnNBESIEyaaYlhXQdKhTnAU2JYEg4pnp43D
XMxsPeDY/OXDoQAJbuj1ip6jFwIyt8cj6uGvdiFrY1Nqa1Ua2YrN0xRvZ6WioYyr
NO7TOkgCC90aop7gxps/ZgYTl2VsTzAtDZXYmKjc+ZNx5F+h5gLhJMNTbzQ2KweE
/7/5ghjHEwc2Z28gh5wOkmK7knuyv1mv4s5ZUfOXs+Xv0sI4fZiNKyaESoyh4zoH
PfUpTMhYPjzpa5g6PDaxs2ewq7Zr0Lvjk12p+vM6xUeO70RQAK8tftoHmTxZDfh7
NxMCnViD1q/2qRLOlSmOyxmH+hmy/4eNkROjMn8pyDHPEC3kg0ZuvS/Zutnm+WkX
uQIDAQABo1MwUTAdBgNVHQ4EFgQUEZqY1o2roD7YNKIYE7V/odSz1uwwHwYDVR0j
BBgwFoAUEZqY1o2roD7YNKIYE7V/odSz1uwwDwYDVR0TAQH/BAUwAwEB/zANBgkq
hkiG9w0BAQsFAAOCAgEAAV1Mafun3XwC2cs4Xgq1vzJw69I24y8dXm45qFdLl5Vv
hkIecwDm2+Ongg82sPPmR1TwsRgdUytywal5nsa1aH/v70MJ7Ic5pBIXdv54kZ8v
qgaItmHF+twb+aqFz/NY0BMv7nNc2MyYEyDwbJUIGwGt+yOlQfHUIwNc+PvVL6Sn
mkm7//EIfiU3HxmusCnbYC+9kmLbeds10qDzTNIHP4ffNAFgnMgauNID8X9RoPBT
TVqLjD5WDHridLMF8n0m18cp2MqV33gXbg4pT/rYvh40p9jJuGDJbcrn5WtKvbMn
lm27oI6bcwKF2i+VHRBxW/c/DZaG0QKo4PaDCd/kF2ix1ymkFG4MtvHmu0Q3SLXi
p7fTL4WZSEUPXe/E7fUuPwof54auXLYNhSR9HJo0ZS2R0S9pursBkBEXTXyiG8T+
iUq4VtBny1Ylr2rJ8Qr1TiaB5ud/IeEv70uDgA9XyUhikfs7t5bYrqdXjANtCvZY
j322+I3wyDdosu2Z1Lrn2w95ZyJhc/rluftc1lKnxgYwKndEJfBlhn8tpHlk2J9T
rPqAezvNhSXH1W6G7WZAvHfdfJahLDhfJ15YQcqqPK+DXEaJeOnUompV+/MEaEOE
3LwN4B78mTgVOcabMeo1NN/2nGObaOm/62t+3B9NwcUi9q1LT/oifLVBh8bEFug=
-----END CERTIFICATE-----

1
run/certificates/ca.srl Normal file
View File

@@ -0,0 +1 @@
5FB2F5A2CA8357D37C84CC406B5F81617348EB58

View File

@@ -0,0 +1,28 @@
-----BEGIN PRIVATE KEY-----
MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCGKkc5obUKeeX8
gDZff4YUoKIoWHMkdxNxpt2UjR7I0TcFVXbOdpEFG1jBLrlcPvTs1LaJ7exQ9657
wma9OMzhn6Lmtp6ecahKGMpnMHSUjFUe45nRtNur6g5i5T5rYcnzaxJBaSxzcV/r
hI/KXRIbxEh+w7/X39wN3ze6EKdQWgHkv7Wsw9R5aGQBtWOQLnj+5wnveJDl3te+
B4oQ60fokW6Dt4RRe4u/YRyu+2VvG8x3RF/OQpDz4qFZHO6hGcS+hbNRyiIkhvdB
a8Qqu1bbDyVc80bkiiPDTO/FQVCxalDMTF7N00ng80OelLs4T+cwR/KQO9NWwgzM
6gJ38aplAgMBAAECggEAEQE5ztWunxnNKyBLA/ajVWj4tJllWqlXBxApxILQdI6D
5UKsUMXZYqbRLIcSCl2WaJAbZMcJrUd/T4NXx0L0QOKdYJWj7BwmwuF6gfKzzAIv
Zb9eRySftR3w3dsFetHFqXsYML82WZl0mWLPYMxEF83cjGieH6vpdb6ljwk+U6It
4WkyxUPojBsTdhmc+T1wI8NpegeRvNy/7euXZXaoo//Rf/fBUFRfSvVfDSMcKDIq
H4dcMAFc2ZHVE2wUuwqLbNbI8L/yuBgP5CHxnHSqG5nZQNMX3hg5winnAyp/iwnR
VA072TeuxqLx68qHEMhhZqO6Te63VtgBpYPapGT4UQKBgQC6Hwq9vXeL7JWsiZqX
Suh8kj/puy/CSeuWBopJVBJkGjyP3DDKtoJqEeOeMajL8rSW3RaCUdv4FvilGfc4
9zTuJBSZTMpoUaCpuX1k6jYOtwcMe17KdJB7Sr1bjKef3VdOpSA+pG3lElz1sH7t
sG6hdIx3mhJB/HpYKGN4A4h8GQKBgQC4iX/E1mvdDVnXcE4cFN/exSYQFmtNDBYe
o6QbLsjEqISAOxipLRTZhQjvePzSD4Y4F7jKqNcvK6LZnQiE43C6VImMT8UT7C2a
ht96l3/bDEGEls1HrzqVVepCWQGnKltkOU69HDRYXJCGJwZ5hfx66UtsXR0ICSNH
EHBoZE3qLQKBgAx4Xfjeg+79F/4qbhAq9a67ActAPm/vEfjIUWWeW2kXlO0ynJZI
ai5/KlgEDcI0bcMZ5xMuNuXFbD1rovPPJF28TyECUyFwLqqQggVL5/lObAt7DJvV
+YQ5OryyjNyaMOpVB/cKf050z4OqoqZ8Rr1MmMi+qvB+4RedBSUaX3+pAoGACwbM
R6q4T0EY+TKQuETXC6ykFZoBV109hR8qEyW8gWPAZxkg5Br5f/XfDtAf6z1aO8fP
Fuz3zq3A0Vf8xlQAzGF4xpWNpR8bqnwcpmqfDSuyToXkRkBGM94qXUSMQLzbMSXr
eolQ52bAjAOQ83n6GC4Qf60gqvZA0WI+FT7JGRECgYAi54HhK7HFogAlX58EX77h
YHL5KHBlG+l8v4amIKvD0JclYylwyLhYkmIM+T4mh8I+T1nabcNeNWit+CYoLwQ8
A3P0ij67TkEV3Ud7KKOtYty+getkM9/hwm14LlMzfLZKay9HCsbb5E2TgmShF68F
VtECuunYyfN4wJSE0aWRPg==
-----END PRIVATE KEY-----

View File

@@ -0,0 +1,26 @@
-----BEGIN CERTIFICATE-----
MIIEWjCCAkKgAwIBAgIUX7L1osqDV9N8hMxAa1+BYXNI61gwDQYJKoZIhvcNAQEL
BQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoM
GEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0yNTA5MjExMTU3MzFaFw0yNzEy
MjUxMTU3MzFaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEw
HwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEB
AQUAA4IBDwAwggEKAoIBAQCGKkc5obUKeeX8gDZff4YUoKIoWHMkdxNxpt2UjR7I
0TcFVXbOdpEFG1jBLrlcPvTs1LaJ7exQ9657wma9OMzhn6Lmtp6ecahKGMpnMHSU
jFUe45nRtNur6g5i5T5rYcnzaxJBaSxzcV/rhI/KXRIbxEh+w7/X39wN3ze6EKdQ
WgHkv7Wsw9R5aGQBtWOQLnj+5wnveJDl3te+B4oQ60fokW6Dt4RRe4u/YRyu+2Vv
G8x3RF/OQpDz4qFZHO6hGcS+hbNRyiIkhvdBa8Qqu1bbDyVc80bkiiPDTO/FQVCx
alDMTF7N00ng80OelLs4T+cwR/KQO9NWwgzM6gJ38aplAgMBAAGjQjBAMB0GA1Ud
DgQWBBTW7Nng9W84V+q0TknoTempPZo2KjAfBgNVHSMEGDAWgBQRmpjWjaugPtg0
ohgTtX+h1LPW7DANBgkqhkiG9w0BAQsFAAOCAgEAguDRKxW8QFV7fJlzAgzjwsBu
97Bk5IsmcIU7sOlmOFYZAG0hwqfuvzU/Tv48tuXOvGQsJtdNSfe4qybd5HnkxmTs
ZmqzCsIh9P4PL/KrKTCykEP935468wg/X9QkykBOJx2zOgBEllxo33BNG4ie6R3H
tYy/1y/hsGfi4Ma2jqBaPfblI86t9VoKiPqqKqFgGk32F4NqIJ2hMKxSypznHIC7
IPikKx9Gt8EpwT+ytJKOnd/A7nBEiaDw5ubcR1s6pmlcGLAE1+A9TX2ncRUcvMI4
w2M5i7X/Vz2zQiPEWmQliYDG1ZFeD1dth973muM6H6NvFyXvEzzRZl5K5DwAcgqA
uMvEKDiDPwKROBTzjq3WIHBe49fz96Fpxld5JxH3RhC2PzIYjUquU2P8Ah6SN6SZ
+Mf/61QxNInnEcxNjknGhcfiyhoqu2B+1/N5cfpXyBfgTQfVzV3HiUvAHzcza9yp
mnPrrxRodkXwncMJNJYTr36yTyZPxC0TZUycvOPwEfBQ1vESAeiJ7+QgFGFu0lgQ
1XAJVpCfHpDrkT184/pszyHHzydWvP7GcrPgJVNlXbMvpenhm2QTCaft5TUDj9+m
8quLjm+bj0OQq1Fmv/OlWvycC5fxnYA0JlRDz56QPHkEL7aZ/+apZhB6Eb77/etv
A5go7PJCZ9vnblPW/HE=
-----END CERTIFICATE-----

10
run/content/data.json Normal file
View File

@@ -0,0 +1,10 @@
{
"key": "val",
"key1": "val",
"key2": "val",
"key3": "val",
"key4": "val",
"key5": "val",
"key6": "val",
"key7": "val"
}

16
run/errors/403.php Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>403 - Login required</title>
</head>
<body>
<h2>403 - Login required</h2>
<form method="post" action="/403-login">
<label>Login: <input type="text" name="login" required></label><br>
<label>Password: <input type="password" name="password" required></label><br>
<button type="submit">Login</button>
</form>
</body>
</html>

9
run/errors/404.html Normal file
View File

@@ -0,0 +1,9 @@
<html>
<head>
<title>404 - File not found</title>
</head>
<body>
<h1>Error 404</h1>
<h2>The requested File was not found on this server.</h2>
</body>
</html>

View File

View File

View File

View File

@@ -0,0 +1,2 @@
22:04:55 [LOG] Server started on port 8080

View File

@@ -0,0 +1,2 @@
22:05:31 [LOG] Server started on port 8080

View File

@@ -0,0 +1,14 @@
22:05:48 [LOG] Server started on port 80
22:05:49 [EXCEPTION-INFO] Handshake failed
22:05:49 [EXCEPTION-MESSAGE] Unsupported or unrecognized SSL message
22:05:49 [EXCEPTION-STACKTRACE] javax.net.ssl.SSLException: Unsupported or unrecognized SSL message
at java.base/sun.security.ssl.SSLSocketInputRecord.handleUnknownRecord(SSLSocketInputRecord.java:462)
at java.base/sun.security.ssl.SSLSocketInputRecord.decode(SSLSocketInputRecord.java:175)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:111)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:426)
at me.finn.unlegitlibrary.network.system.server.NetworkServer.incomingConnections(NetworkServer.java:100)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,14 @@
22:05:59 [LOG] Server started on port 80
22:06:01 [EXCEPTION-INFO] Handshake failed
22:06:01 [EXCEPTION-MESSAGE] Unsupported or unrecognized SSL message
22:06:01 [EXCEPTION-STACKTRACE] javax.net.ssl.SSLException: Unsupported or unrecognized SSL message
at java.base/sun.security.ssl.SSLSocketInputRecord.handleUnknownRecord(SSLSocketInputRecord.java:462)
at java.base/sun.security.ssl.SSLSocketInputRecord.decode(SSLSocketInputRecord.java:175)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:111)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:426)
at me.finn.unlegitlibrary.network.system.server.NetworkServer.incomingConnections(NetworkServer.java:100)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,14 @@
22:06:09 [LOG] Server started on port 80
22:06:10 [EXCEPTION-INFO] Handshake failed
22:06:10 [EXCEPTION-MESSAGE] Unsupported or unrecognized SSL message
22:06:10 [EXCEPTION-STACKTRACE] javax.net.ssl.SSLException: Unsupported or unrecognized SSL message
at java.base/sun.security.ssl.SSLSocketInputRecord.handleUnknownRecord(SSLSocketInputRecord.java:462)
at java.base/sun.security.ssl.SSLSocketInputRecord.decode(SSLSocketInputRecord.java:175)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:111)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:426)
at me.finn.unlegitlibrary.network.system.server.NetworkServer.incomingConnections(NetworkServer.java:100)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,2 @@
22:06:59 [LOG] Server started on port 80

View File

@@ -0,0 +1,14 @@
22:07:17 [LOG] Server started on port 80
22:07:21 [EXCEPTION-INFO] Handshake failed
22:07:21 [EXCEPTION-MESSAGE] Unsupported or unrecognized SSL message
22:07:21 [EXCEPTION-STACKTRACE] javax.net.ssl.SSLException: Unsupported or unrecognized SSL message
at java.base/sun.security.ssl.SSLSocketInputRecord.handleUnknownRecord(SSLSocketInputRecord.java:462)
at java.base/sun.security.ssl.SSLSocketInputRecord.decode(SSLSocketInputRecord.java:175)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:111)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:426)
at me.finn.unlegitlibrary.network.system.server.NetworkServer.incomingConnections(NetworkServer.java:100)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,45 @@
22:10:05 [LOG] Server started on port 80
22:10:28 [EXCEPTION-INFO] Handshake failed
22:10:28 [EXCEPTION-MESSAGE] Unsupported or unrecognized SSL message
22:10:28 [EXCEPTION-STACKTRACE] javax.net.ssl.SSLException: Unsupported or unrecognized SSL message
at java.base/sun.security.ssl.SSLSocketInputRecord.handleUnknownRecord(SSLSocketInputRecord.java:462)
at java.base/sun.security.ssl.SSLSocketInputRecord.decode(SSLSocketInputRecord.java:175)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:111)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:426)
at me.finn.unlegitlibrary.network.system.server.NetworkServer.incomingConnections(NetworkServer.java:100)
at java.base/java.lang.Thread.run(Thread.java:1575)
22:10:40 [EXCEPTION-INFO] Handshake failed
22:10:40 [EXCEPTION-MESSAGE] Unsupported or unrecognized SSL message
22:10:40 [EXCEPTION-STACKTRACE] javax.net.ssl.SSLException: Unsupported or unrecognized SSL message
at java.base/sun.security.ssl.SSLSocketInputRecord.handleUnknownRecord(SSLSocketInputRecord.java:462)
at java.base/sun.security.ssl.SSLSocketInputRecord.decode(SSLSocketInputRecord.java:175)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:111)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:426)
at me.finn.unlegitlibrary.network.system.server.NetworkServer.incomingConnections(NetworkServer.java:100)
at java.base/java.lang.Thread.run(Thread.java:1575)
22:10:48 [EXCEPTION-INFO] Handshake failed
22:10:48 [EXCEPTION-MESSAGE] Remote host terminated the handshake
22:10:48 [EXCEPTION-STACKTRACE] javax.net.ssl.SSLHandshakeException: Remote host terminated the handshake
at java.base/sun.security.ssl.SSLSocketImpl.handleEOF(SSLSocketImpl.java:1715)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1515)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:426)
at me.finn.unlegitlibrary.network.system.server.NetworkServer.incomingConnections(NetworkServer.java:100)
at java.base/java.lang.Thread.run(Thread.java:1575)
Caused by: java.io.EOFException: SSL peer shut down incorrectly
at java.base/sun.security.ssl.SSLSocketInputRecord.read(SSLSocketInputRecord.java:494)
at java.base/sun.security.ssl.SSLSocketInputRecord.readHeader(SSLSocketInputRecord.java:483)
at java.base/sun.security.ssl.SSLSocketInputRecord.decode(SSLSocketInputRecord.java:160)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:111)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
... 5 more

View File

@@ -0,0 +1,2 @@
22:11:05 [LOG] Server started on port 8080

View File

@@ -0,0 +1,35 @@
22:11:35 [LOG] Server started on port 443
22:11:45 [EXCEPTION-INFO] Handshake failed
22:11:45 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
22:11:45 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:426)
at me.finn.unlegitlibrary.network.system.server.NetworkServer.incomingConnections(NetworkServer.java:100)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,2 @@
22:17:05 [LOG] Server started on port 443

View File

@@ -0,0 +1,2 @@
22:19:24 [LOG] Server started on port 443

View File

@@ -0,0 +1,35 @@
22:20:18 [LOG] Server started on port 443
22:20:46 [EXCEPTION-INFO] Handshake failed
22:20:46 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
22:20:46 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:426)
at me.finn.unlegitlibrary.network.system.server.NetworkServer.incomingConnections(NetworkServer.java:100)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,2 @@
22:22:29 [LOG] Server started on port 443

View File

@@ -0,0 +1,2 @@
22:23:52 [LOG] Server started on port 443

View File

@@ -0,0 +1,2 @@
22:24:46 [LOG] Server started on port 443

View File

@@ -0,0 +1,2 @@
22:25:54 [LOG] Server started on port 443

View File

@@ -0,0 +1,2 @@
22:28:00 [LOG] Server started on port 443

View File

@@ -0,0 +1,2 @@
22:29:54 [LOG] Server started on port 443

View File

@@ -0,0 +1,2 @@
22:35:12 [LOG] Server started on port 443

View File

@@ -0,0 +1,2 @@
22:36:56 [LOG] Server started on port 443

View File

@@ -0,0 +1,2 @@
22:49:16 [LOG] Server started on port 9389

View File

@@ -0,0 +1,226 @@
22:51:49 [LOG] Server started on port 9389
22:54:38 [EXCEPTION-INFO] Failed to handle browser
22:54:38 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
22:54:38 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:87)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:73)
at java.base/java.lang.Thread.run(Thread.java:1575)
22:55:33 [EXCEPTION-INFO] Failed to handle browser
22:55:33 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
22:55:33 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:87)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:73)
at java.base/java.lang.Thread.run(Thread.java:1575)
22:55:34 [EXCEPTION-INFO] Failed to handle browser
22:55:34 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
22:55:34 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:87)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:73)
at java.base/java.lang.Thread.run(Thread.java:1575)
22:55:35 [EXCEPTION-INFO] Failed to handle browser
22:55:35 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
22:55:35 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:87)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:73)
at java.base/java.lang.Thread.run(Thread.java:1575)
22:55:35 [EXCEPTION-INFO] Failed to handle browser
22:55:35 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
22:55:35 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:87)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:73)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,181 @@
22:55:56 [LOG] Server started on port 9389
22:55:59 [EXCEPTION-INFO] Failed to handle browser
22:55:59 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
22:55:59 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:87)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:73)
at java.base/java.lang.Thread.run(Thread.java:1575)
22:55:59 [EXCEPTION-INFO] Failed to handle browser
22:55:59 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
22:55:59 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:87)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:73)
at java.base/java.lang.Thread.run(Thread.java:1575)
22:56:00 [EXCEPTION-INFO] Failed to handle browser
22:56:00 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
22:56:00 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:87)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:73)
at java.base/java.lang.Thread.run(Thread.java:1575)
22:56:00 [EXCEPTION-INFO] Failed to handle browser
22:56:00 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
22:56:00 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:87)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:73)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,2 @@
23:00:33 [LOG] Server started on port 9389

View File

@@ -0,0 +1,2 @@
23:01:19 [LOG] Server started on port 9389

View File

@@ -0,0 +1,2 @@
23:02:21 [LOG] Server started on port 9389

View File

@@ -0,0 +1,221 @@
23:10:28 [LOG] Server started on port 9389
23:10:31 [EXCEPTION-INFO] Failed to handle browser
23:10:31 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:31 [EXCEPTION-INFO] Failed to handle browser
23:10:31 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:31 [EXCEPTION-INFO] Failed to handle browser
23:10:31 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:32 [EXCEPTION-INFO] Failed to handle browser
23:10:32 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:32 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:32 [EXCEPTION-INFO] Failed to handle browser
23:10:32 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:32 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:32 [EXCEPTION-INFO] Failed to handle browser
23:10:32 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:32 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:32 [EXCEPTION-INFO] Failed to handle browser
23:10:32 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:32 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:32 [EXCEPTION-INFO] Failed to handle browser
23:10:32 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:32 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:32 [EXCEPTION-INFO] Failed to handle browser
23:10:32 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:32 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:32 [EXCEPTION-INFO] Failed to handle browser
23:10:32 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:32 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:33 [EXCEPTION-INFO] Failed to handle browser
23:10:33 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:33 [EXCEPTION-INFO] Failed to handle browser
23:10:33 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:33 [EXCEPTION-INFO] Failed to handle browser
23:10:33 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:33 [EXCEPTION-INFO] Failed to handle browser
23:10:33 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:33 [EXCEPTION-INFO] Failed to handle browser
23:10:33 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:33 [EXCEPTION-INFO] Failed to handle browser
23:10:33 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:33 [EXCEPTION-INFO] Failed to handle browser
23:10:33 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:33 [EXCEPTION-INFO] Failed to handle browser
23:10:33 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:33 [EXCEPTION-INFO] Failed to handle browser
23:10:33 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:10:33 [EXCEPTION-INFO] Failed to handle browser
23:10:33 [EXCEPTION-MESSAGE] error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:10:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,111 @@
23:10:58 [LOG] Server started on port 9389
23:11:00 [EXCEPTION-INFO] Failed to handle browser
23:11:00 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:00 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:00 [EXCEPTION-INFO] Failed to handle browser
23:11:00 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:00 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:00 [EXCEPTION-INFO] Failed to handle browser
23:11:00 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:00 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:00 [EXCEPTION-INFO] Failed to handle browser
23:11:00 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:00 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:00 [EXCEPTION-INFO] Failed to handle browser
23:11:00 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:00 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:00 [EXCEPTION-INFO] Failed to handle browser
23:11:00 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:00 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:00 [EXCEPTION-INFO] Failed to handle browser
23:11:00 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:00 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:00 [EXCEPTION-INFO] Failed to handle browser
23:11:00 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:00 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:00 [EXCEPTION-INFO] Failed to handle browser
23:11:00 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:00 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:00 [EXCEPTION-INFO] Failed to handle browser
23:11:00 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:00 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,111 @@
23:11:27 [LOG] Server started on port 9389
23:11:28 [EXCEPTION-INFO] Failed to handle browser
23:11:28 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:28 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:28 [EXCEPTION-INFO] Failed to handle browser
23:11:28 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:28 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:28 [EXCEPTION-INFO] Failed to handle browser
23:11:28 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:28 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:28 [EXCEPTION-INFO] Failed to handle browser
23:11:28 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:28 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:28 [EXCEPTION-INFO] Failed to handle browser
23:11:28 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:28 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:28 [EXCEPTION-INFO] Failed to handle browser
23:11:28 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:28 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:28 [EXCEPTION-INFO] Failed to handle browser
23:11:28 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:28 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:28 [EXCEPTION-INFO] Failed to handle browser
23:11:28 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:28 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:28 [EXCEPTION-INFO] Failed to handle browser
23:11:28 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:28 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)
23:11:28 [EXCEPTION-INFO] Failed to handle browser
23:11:28 [EXCEPTION-MESSAGE] .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
23:11:28 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: .\error\404.html (Das System kann den angegebenen Pfad nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:99)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:75)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

View File

@@ -0,0 +1,624 @@
14:01:39 [LOG] Server started on port 9389
14:01:47 [EXCEPTION-INFO] Failed to handle browser
14:01:47 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
14:01:47 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:158)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:01:47 [EXCEPTION-INFO] Failed to handle browser
14:01:47 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
14:01:47 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:158)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:02 [EXCEPTION-INFO] Failed to handle browser
14:03:02 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
14:03:02 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:158)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:02 [EXCEPTION-INFO] Failed to handle browser
14:03:02 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
14:03:02 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:158)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:06 [EXCEPTION-INFO] Failed to handle browser
14:03:06 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:06 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:06 [EXCEPTION-INFO] Failed to handle browser
14:03:06 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:06 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:06 [EXCEPTION-INFO] Failed to handle browser
14:03:06 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:06 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:06 [EXCEPTION-INFO] Failed to handle browser
14:03:06 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:06 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:06 [EXCEPTION-INFO] Failed to handle browser
14:03:06 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:06 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:06 [EXCEPTION-INFO] Failed to handle browser
14:03:06 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:06 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:06 [EXCEPTION-INFO] Failed to handle browser
14:03:06 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:06 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:06 [EXCEPTION-INFO] Failed to handle browser
14:03:06 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:06 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:06 [EXCEPTION-INFO] Failed to handle browser
14:03:06 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:06 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:06 [EXCEPTION-INFO] Failed to handle browser
14:03:06 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:06 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:10 [EXCEPTION-INFO] Failed to handle browser
14:03:10 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
14:03:10 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:158)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:10 [EXCEPTION-INFO] Failed to handle browser
14:03:10 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
14:03:10 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:158)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:10 [EXCEPTION-INFO] Failed to handle browser
14:03:10 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
14:03:10 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:158)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:11 [EXCEPTION-INFO] Failed to handle browser
14:03:11 [EXCEPTION-MESSAGE] Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
14:03:11 [EXCEPTION-STACKTRACE] java.net.SocketException: Eine bestehende Verbindung wurde softwaregesteuert
durch den Hostcomputer abgebrochen
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:158)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:11 [EXCEPTION-INFO] Failed to handle browser
14:03:11 [EXCEPTION-MESSAGE] Connection reset by peer
14:03:11 [EXCEPTION-STACKTRACE] java.net.SocketException: Connection reset by peer
at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method)
at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54)
at java.base/sun.nio.ch.NioSocketImpl.tryWrite(NioSocketImpl.java:394)
at java.base/sun.nio.ch.NioSocketImpl.implWrite(NioSocketImpl.java:410)
at java.base/sun.nio.ch.NioSocketImpl.write(NioSocketImpl.java:440)
at java.base/sun.nio.ch.NioSocketImpl$2.write(NioSocketImpl.java:819)
at java.base/java.net.Socket$SocketOutputStream.implWrite(Socket.java:1230)
at java.base/java.net.Socket$SocketOutputStream.write(Socket.java:1217)
at java.base/sun.security.ssl.SSLSocketOutputRecord.flush(SSLSocketOutputRecord.java:271)
at java.base/sun.security.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:89)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.onProduceFinished(Finished.java:787)
at java.base/sun.security.ssl.Finished$T13FinishedProducer.produce(Finished.java:675)
at java.base/sun.security.ssl.SSLHandshake.produce(SSLHandshake.java:437)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.goServerHello(ClientHello.java:1245)
at java.base/sun.security.ssl.ClientHello$T13ClientHelloConsumer.consume(ClientHello.java:1181)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.onClientHello(ClientHello.java:839)
at java.base/sun.security.ssl.ClientHello$ClientHelloConsumer.consume(ClientHello.java:800)
at java.base/sun.security.ssl.SSLHandshake.consume(SSLHandshake.java:393)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:476)
at java.base/sun.security.ssl.HandshakeContext.dispatch(HandshakeContext.java:447)
at java.base/sun.security.ssl.TransportContext.dispatch(TransportContext.java:201)
at java.base/sun.security.ssl.SSLTransport.decode(SSLTransport.java:172)
at java.base/sun.security.ssl.SSLSocketImpl.decode(SSLSocketImpl.java:1507)
at java.base/sun.security.ssl.SSLSocketImpl.readHandshakeRecord(SSLSocketImpl.java:1422)
at java.base/sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:455)
at java.base/sun.security.ssl.SSLSocketImpl.ensureNegotiated(SSLSocketImpl.java:924)
at java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:1015)
at java.base/sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:350)
at java.base/sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:393)
at java.base/sun.nio.cs.StreamDecoder.lockedRead(StreamDecoder.java:217)
at java.base/sun.nio.cs.StreamDecoder.read(StreamDecoder.java:171)
at java.base/java.io.InputStreamReader.read(InputStreamReader.java:190)
at java.base/java.io.BufferedReader.fill(BufferedReader.java:160)
at java.base/java.io.BufferedReader.implReadLine(BufferedReader.java:370)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:347)
at java.base/java.io.BufferedReader.readLine(BufferedReader.java:436)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:158)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:15 [EXCEPTION-INFO] Failed to handle browser
14:03:15 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:15 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:15 [EXCEPTION-INFO] Failed to handle browser
14:03:15 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:15 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:15 [EXCEPTION-INFO] Failed to handle browser
14:03:15 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:15 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:15 [EXCEPTION-INFO] Failed to handle browser
14:03:15 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:15 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:15 [EXCEPTION-INFO] Failed to handle browser
14:03:15 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:15 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:15 [EXCEPTION-INFO] Failed to handle browser
14:03:15 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:15 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:15 [EXCEPTION-INFO] Failed to handle browser
14:03:15 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:15 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:15 [EXCEPTION-INFO] Failed to handle browser
14:03:15 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:15 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:15 [EXCEPTION-INFO] Failed to handle browser
14:03:15 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:15 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:03:15 [EXCEPTION-INFO] Failed to handle browser
14:03:15 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:03:15 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:168)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,221 @@
14:04:59 [LOG] Server started on port 9389
14:05:05 [EXCEPTION-INFO] Failed to handle browser
14:05:05 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:05 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:05 [EXCEPTION-INFO] Failed to handle browser
14:05:05 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:05 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:05 [EXCEPTION-INFO] Failed to handle browser
14:05:05 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:05 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:05 [EXCEPTION-INFO] Failed to handle browser
14:05:05 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:05 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:05 [EXCEPTION-INFO] Failed to handle browser
14:05:05 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:05 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:05 [EXCEPTION-INFO] Failed to handle browser
14:05:05 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:05 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:05 [EXCEPTION-INFO] Failed to handle browser
14:05:05 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:05 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:05 [EXCEPTION-INFO] Failed to handle browser
14:05:05 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:05 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:05 [EXCEPTION-INFO] Failed to handle browser
14:05:05 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:05 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:05 [EXCEPTION-INFO] Failed to handle browser
14:05:05 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:05 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:13 [EXCEPTION-INFO] Failed to handle browser
14:05:13 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:13 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:13 [EXCEPTION-INFO] Failed to handle browser
14:05:13 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:13 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:13 [EXCEPTION-INFO] Failed to handle browser
14:05:13 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:13 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:13 [EXCEPTION-INFO] Failed to handle browser
14:05:13 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:13 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:13 [EXCEPTION-INFO] Failed to handle browser
14:05:13 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:13 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:13 [EXCEPTION-INFO] Failed to handle browser
14:05:13 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:13 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:13 [EXCEPTION-INFO] Failed to handle browser
14:05:13 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:13 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:13 [EXCEPTION-INFO] Failed to handle browser
14:05:13 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:13 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:13 [EXCEPTION-INFO] Failed to handle browser
14:05:13 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:13 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:05:13 [EXCEPTION-INFO] Failed to handle browser
14:05:13 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:05:13 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:171)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:128)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,2 @@
14:07:21 [LOG] Server started on port 9389

View File

@@ -0,0 +1,2 @@
14:08:27 [LOG] Server started on port 9389

View File

@@ -0,0 +1,100 @@
14:09:31 [LOG] Server started on port 9389
14:10:17 [EXCEPTION-INFO] Failed to handle browser
14:10:17 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:10:17 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:178)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:10:17 [EXCEPTION-INFO] Failed to handle browser
14:10:17 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:10:17 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:178)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:10:17 [EXCEPTION-INFO] Failed to handle browser
14:10:17 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:10:17 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:178)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:10:17 [EXCEPTION-INFO] Failed to handle browser
14:10:17 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:10:17 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:178)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:10:17 [EXCEPTION-INFO] Failed to handle browser
14:10:17 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:10:17 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:178)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:10:17 [EXCEPTION-INFO] Failed to handle browser
14:10:17 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:10:17 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:178)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:10:17 [EXCEPTION-INFO] Failed to handle browser
14:10:17 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:10:17 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:178)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:10:17 [EXCEPTION-INFO] Failed to handle browser
14:10:17 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:10:17 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:178)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:10:17 [EXCEPTION-INFO] Failed to handle browser
14:10:17 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:10:17 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:178)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,111 @@
14:11:19 [LOG] Server started on port 9389
14:11:20 [EXCEPTION-INFO] Failed to handle browser
14:11:20 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:11:20 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:11:20 [EXCEPTION-INFO] Failed to handle browser
14:11:20 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:11:20 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:11:20 [EXCEPTION-INFO] Failed to handle browser
14:11:20 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:11:20 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:11:20 [EXCEPTION-INFO] Failed to handle browser
14:11:20 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:11:20 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:11:20 [EXCEPTION-INFO] Failed to handle browser
14:11:20 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:11:20 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:11:20 [EXCEPTION-INFO] Failed to handle browser
14:11:20 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:11:20 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:11:20 [EXCEPTION-INFO] Failed to handle browser
14:11:20 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:11:20 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:11:20 [EXCEPTION-INFO] Failed to handle browser
14:11:20 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:11:20 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:11:20 [EXCEPTION-INFO] Failed to handle browser
14:11:20 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:11:20 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:11:20 [EXCEPTION-INFO] Failed to handle browser
14:11:20 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:11:20 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,111 @@
14:12:06 [LOG] Server started on port 9389
14:12:11 [EXCEPTION-INFO] Failed to handle browser
14:12:11 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:11 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:11 [EXCEPTION-INFO] Failed to handle browser
14:12:11 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:11 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:11 [EXCEPTION-INFO] Failed to handle browser
14:12:11 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:11 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:11 [EXCEPTION-INFO] Failed to handle browser
14:12:11 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:11 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:11 [EXCEPTION-INFO] Failed to handle browser
14:12:11 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:11 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:11 [EXCEPTION-INFO] Failed to handle browser
14:12:11 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:11 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:11 [EXCEPTION-INFO] Failed to handle browser
14:12:11 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:11 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:11 [EXCEPTION-INFO] Failed to handle browser
14:12:11 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:11 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:11 [EXCEPTION-INFO] Failed to handle browser
14:12:11 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:11 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:11 [EXCEPTION-INFO] Failed to handle browser
14:12:11 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:11 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:180)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:135)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,111 @@
14:12:30 [LOG] Server started on port 9389
14:12:33 [EXCEPTION-INFO] Failed to handle browser
14:12:33 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:175)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:33 [EXCEPTION-INFO] Failed to handle browser
14:12:33 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:175)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:33 [EXCEPTION-INFO] Failed to handle browser
14:12:33 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:175)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:33 [EXCEPTION-INFO] Failed to handle browser
14:12:33 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:175)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:33 [EXCEPTION-INFO] Failed to handle browser
14:12:33 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:175)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:33 [EXCEPTION-INFO] Failed to handle browser
14:12:33 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:33 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:175)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:34 [EXCEPTION-INFO] Failed to handle browser
14:12:34 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:34 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:175)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:34 [EXCEPTION-INFO] Failed to handle browser
14:12:34 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:34 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:175)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:34 [EXCEPTION-INFO] Failed to handle browser
14:12:34 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:34 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:175)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:12:34 [EXCEPTION-INFO] Failed to handle browser
14:12:34 [EXCEPTION-MESSAGE] content\ (Zugriff verweigert)
14:12:34 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\ (Zugriff verweigert)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:175)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,111 @@
14:14:30 [LOG] Server started on port 9389
14:14:31 [EXCEPTION-INFO] Failed to handle browser
14:14:31 [EXCEPTION-MESSAGE] content\pain.php (Das System kann die angegebene Datei nicht finden)
14:14:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\pain.php (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:14:31 [EXCEPTION-INFO] Failed to handle browser
14:14:31 [EXCEPTION-MESSAGE] content\pain.php (Das System kann die angegebene Datei nicht finden)
14:14:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\pain.php (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:14:31 [EXCEPTION-INFO] Failed to handle browser
14:14:31 [EXCEPTION-MESSAGE] content\pain.php (Das System kann die angegebene Datei nicht finden)
14:14:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\pain.php (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:14:31 [EXCEPTION-INFO] Failed to handle browser
14:14:31 [EXCEPTION-MESSAGE] content\pain.php (Das System kann die angegebene Datei nicht finden)
14:14:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\pain.php (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:14:31 [EXCEPTION-INFO] Failed to handle browser
14:14:31 [EXCEPTION-MESSAGE] content\pain.php (Das System kann die angegebene Datei nicht finden)
14:14:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\pain.php (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:14:31 [EXCEPTION-INFO] Failed to handle browser
14:14:31 [EXCEPTION-MESSAGE] content\pain.php (Das System kann die angegebene Datei nicht finden)
14:14:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\pain.php (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:14:31 [EXCEPTION-INFO] Failed to handle browser
14:14:31 [EXCEPTION-MESSAGE] content\pain.php (Das System kann die angegebene Datei nicht finden)
14:14:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\pain.php (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:14:31 [EXCEPTION-INFO] Failed to handle browser
14:14:31 [EXCEPTION-MESSAGE] content\pain.php (Das System kann die angegebene Datei nicht finden)
14:14:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\pain.php (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:14:31 [EXCEPTION-INFO] Failed to handle browser
14:14:31 [EXCEPTION-MESSAGE] content\pain.php (Das System kann die angegebene Datei nicht finden)
14:14:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\pain.php (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:14:31 [EXCEPTION-INFO] Failed to handle browser
14:14:31 [EXCEPTION-MESSAGE] content\pain.php (Das System kann die angegebene Datei nicht finden)
14:14:31 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: content\pain.php (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,111 @@
14:15:24 [LOG] Server started on port 9389
14:15:25 [EXCEPTION-INFO] Failed to handle browser
14:15:25 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:25 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:25 [EXCEPTION-INFO] Failed to handle browser
14:15:25 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:25 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:26 [EXCEPTION-INFO] Failed to handle browser
14:15:26 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:26 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:26 [EXCEPTION-INFO] Failed to handle browser
14:15:26 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:26 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:26 [EXCEPTION-INFO] Failed to handle browser
14:15:26 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:26 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:26 [EXCEPTION-INFO] Failed to handle browser
14:15:26 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:26 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:26 [EXCEPTION-INFO] Failed to handle browser
14:15:26 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:26 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:26 [EXCEPTION-INFO] Failed to handle browser
14:15:26 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:26 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:26 [EXCEPTION-INFO] Failed to handle browser
14:15:26 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:26 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:26 [EXCEPTION-INFO] Failed to handle browser
14:15:26 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:26 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,111 @@
14:15:47 [LOG] Server started on port 9389
14:15:48 [EXCEPTION-INFO] Failed to handle browser
14:15:48 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:48 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:48 [EXCEPTION-INFO] Failed to handle browser
14:15:48 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:48 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:48 [EXCEPTION-INFO] Failed to handle browser
14:15:48 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:48 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:48 [EXCEPTION-INFO] Failed to handle browser
14:15:48 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:48 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:48 [EXCEPTION-INFO] Failed to handle browser
14:15:48 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:48 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:48 [EXCEPTION-INFO] Failed to handle browser
14:15:48 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:48 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:48 [EXCEPTION-INFO] Failed to handle browser
14:15:48 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:48 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:48 [EXCEPTION-INFO] Failed to handle browser
14:15:48 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:48 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:48 [EXCEPTION-INFO] Failed to handle browser
14:15:48 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:48 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)
14:15:48 [EXCEPTION-INFO] Failed to handle browser
14:15:48 [EXCEPTION-MESSAGE] error\404.html (Das System kann die angegebene Datei nicht finden)
14:15:48 [EXCEPTION-STACKTRACE] java.io.FileNotFoundException: error\404.html (Das System kann die angegebene Datei nicht finden)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:215)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:153)
at me.finn.unlegitlibrary.file.FileUtils.readFileFull(FileUtils.java:126)
at github.openautonomousconnection.webserver.Main.handleBrowser(Main.java:174)
at github.openautonomousconnection.webserver.Main.lambda$main$1(Main.java:130)
at java.base/java.lang.Thread.run(Thread.java:1575)

View File

@@ -0,0 +1,2 @@
14:17:17 [LOG] Server started on port 9389

View File

@@ -0,0 +1,2 @@
14:22:09 [LOG] Server started on port 9389

View File

@@ -0,0 +1,2 @@
14:22:46 [LOG] Server started on port 9389

View File

@@ -0,0 +1,2 @@
14:23:40 [LOG] Server started on port 9389

View File

@@ -0,0 +1,2 @@
14:23:59 [LOG] Server started on port 9389

View File

@@ -0,0 +1,2 @@
14:24:17 [LOG] Server started on port 9389

View File

@@ -0,0 +1,2 @@
14:24:32 [LOG] Server started on port 9389

View File

@@ -0,0 +1,2 @@
14:33:10 [LOG] Server started on port 9389

2
run/logs/log-latest.txt Normal file
View File

@@ -0,0 +1,2 @@
14:33:10 [LOG] Server started on port 9389

140
run/php/README.md Normal file
View File

@@ -0,0 +1,140 @@
<div align="center">
<a href="https://www.php.net">
<img
alt="PHP"
src="https://www.php.net/images/logos/new-php-logo.svg"
width="150">
</a>
</div>
# The PHP Interpreter
PHP is a popular general-purpose scripting language that is especially suited to
web development. Fast, flexible and pragmatic, PHP powers everything from your
blog to the most popular websites in the world. PHP is distributed under the
[PHP License v3.01](LICENSE).
[![Push](https://github.com/php/php-src/actions/workflows/push.yml/badge.svg)](https://github.com/php/php-src/actions/workflows/push.yml)
[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/php.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:php)
## Documentation
The PHP manual is available at [php.net/docs](https://www.php.net/docs).
## Installation
### Prebuilt packages and binaries
Prebuilt packages and binaries can be used to get up and running fast with PHP.
For Windows, the PHP binaries can be obtained from
[windows.php.net](https://windows.php.net). After extracting the archive the
`*.exe` files are ready to use.
For other systems, see the [installation chapter](https://www.php.net/install).
### Building PHP source code
*For Windows, see [Build your own PHP on Windows](https://wiki.php.net/internals/windows/stepbystepbuild_sdk_2).*
For a minimal PHP build from Git, you will need autoconf, bison, and re2c. For
a default build, you will additionally need libxml2 and libsqlite3.
On Ubuntu, you can install these using:
sudo apt install -y pkg-config build-essential autoconf bison re2c \
libxml2-dev libsqlite3-dev
On Fedora, you can install these using:
sudo dnf install re2c bison autoconf make libtool ccache libxml2-devel sqlite-devel
Generate configure:
./buildconf
Configure your build. `--enable-debug` is recommended for development, see
`./configure --help` for a full list of options.
# For development
./configure --enable-debug
# For production
./configure
Build PHP. To speed up the build, specify the maximum number of jobs using `-j`:
make -j4
The number of jobs should usually match the number of available cores, which
can be determined using `nproc`.
## Testing PHP source code
PHP ships with an extensive test suite, the command `make test` is used after
successful compilation of the sources to run this test suite.
It is possible to run tests using multiple cores by setting `-jN` in
`TEST_PHP_ARGS`:
make TEST_PHP_ARGS=-j4 test
Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum
number of jobs should not exceed the number of cores available.
The [qa.php.net](https://qa.php.net) site provides more detailed info about
testing and quality assurance.
## Installing PHP built from source
After a successful build (and test), PHP may be installed with:
make install
Depending on your permissions and prefix, `make install` may need super user
permissions.
## PHP extensions
Extensions provide additional functionality on top of PHP. PHP consists of many
essential bundled extensions. Additional extensions can be found in the PHP
Extension Community Library - [PECL](https://pecl.php.net).
## Contributing
The PHP source code is located in the Git repository at
[github.com/php/php-src](https://github.com/php/php-src). Contributions are most
welcome by forking the repository and sending a pull request.
Discussions are done on GitHub, but depending on the topic can also be relayed
to the official PHP developer mailing list internals@lists.php.net.
New features require an RFC and must be accepted by the developers. See
[Request for comments - RFC](https://wiki.php.net/rfc) and
[Voting on PHP features](https://wiki.php.net/rfc/voting) for more information
on the process.
Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in
the commit message using `GH-NNNNNN`. Use `#NNNNNN` for tickets in the old
[bugs.php.net](https://bugs.php.net) bug tracker.
Fix GH-7815: php_uname doesn't recognise latest Windows versions
Fix #55371: get_magic_quotes_gpc() throws deprecation warning
See [Git workflow](https://wiki.php.net/vcs/gitworkflow) for details on how pull
requests are merged.
### Guidelines for contributors
See further documents in the repository for more information on how to
contribute:
- [Contributing to PHP](/CONTRIBUTING.md)
- [PHP coding standards](/CODING_STANDARDS.md)
- [Internal documentation](https://php.github.io/php-src/)
- [Mailing list rules](/docs/mailinglist-rules.md)
- [PHP release process](/docs/release-process.md)
## Credits
For the list of people who've put work into PHP, please see the
[PHP credits page](https://www.php.net/credits.php).

BIN
run/php/deplister.exe Normal file

Binary file not shown.

BIN
run/php/dev/php8.lib Normal file

Binary file not shown.

BIN
run/php/ext/php_bz2.dll Normal file

Binary file not shown.

Binary file not shown.

BIN
run/php/ext/php_curl.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_dba.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_dl_test.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_enchant.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_exif.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_ffi.dll Normal file

Binary file not shown.

Binary file not shown.

BIN
run/php/ext/php_ftp.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_gd.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_gettext.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_gmp.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_intl.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_ldap.dll Normal file

Binary file not shown.

Binary file not shown.

BIN
run/php/ext/php_mysqli.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_odbc.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_opcache.dll Normal file

Binary file not shown.

BIN
run/php/ext/php_openssl.dll Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More