ich habe einen Debian 12 Server, auf dem läuft ein Apache2 mit folgender Konfiguration:
Code: Alles auswählen
<VirtualHost *:80>
ServerName example.de
Redirect permanent / https://example.de
</VirtualHost>
<VirtualHost *:443>
ServerName example.de
SSLProxyEngine On
ProxyPass / https://example.de:8443/
ProxyPassReverse / https://example.de:8443/
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/example.de/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/example.de/privkey.pem
ProxyPreserveHost On
RequestHeader set X-Forwarded-Proto "https"
RequestHeader set X-Forwarded-Port "443"
</VirtualHost>
"It was possible to login with the following credentials (::) https://example.de/login:FIELD:HPWORD PUB:HTTP/1.1 200 https://example.de/login:MAIL:TELESUP:HTTP/1.1 200 ...[...]... Remote host accept more than 11 logins. This could indicate some error or some "broken" web application. Scanner stops testing for default logins at this point."
Port: 443
Protokoll: tcp
Risiko: high
Für die Application sind keine Sicherheitslücken bekannt (ist aktuell), das Debian 12 hält sich per unattended-upgrades aktuell und macht auch Reboots bei Bedarf. Java wird OpenJDK von Debian verwenden:
Code: Alles auswählen
root@server:~$ java -version
openjdk version "11.0.22" 2024-01-16
OpenJDK Runtime Environment (build 11.0.22+7-post-Debian-1deb11u1)
OpenJDK 64-Bit Server VM (build 11.0.22+7-post-Debian-1deb11u1, mixed mode, sharing)
root@server:~$
PS: ich hätte noch einen Screenshot aber ich scheine hier keine Bilder anhängen zu dürfen.