<summary><strong>Lernen Sie AWS-Hacking von Grund auf mit</strong><ahref="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
* Wenn Sie Ihr **Unternehmen in HackTricks bewerben möchten** oder **HackTricks als PDF herunterladen möchten**, überprüfen Sie die [**ABONNEMENTPLÄNE**](https://github.com/sponsors/carlospolop)!
* Holen Sie sich das [**offizielle PEASS & HackTricks-Merchandise**](https://peass.creator-spring.com)
* Entdecken Sie [**The PEASS Family**](https://opensea.io/collection/the-peass-family), unsere Sammlung exklusiver [**NFTs**](https://opensea.io/collection/the-peass-family)
* **Treten Sie der** 💬 [**Discord-Gruppe**](https://discord.gg/hRep4RUj7f) oder der [**Telegram-Gruppe**](https://t.me/peass) bei oder **folgen** Sie uns auf **Twitter** 🐦 [**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
* **Teilen Sie Ihre Hacking-Tricks, indem Sie PRs an die** [**HackTricks**](https://github.com/carlospolop/hacktricks) und [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) Github-Repositories senden.
Treten Sie dem [**HackenProof Discord**](https://discord.com/invite/N3FrSbmwdy) Server bei, um mit erfahrenen Hackern und Bug-Bounty-Jägern zu kommunizieren!
> AJP ist ein Drahtprotokoll. Es handelt sich um eine optimierte Version des HTTP-Protokolls, mit der ein eigenständiger Webserver wie [Apache](http://httpd.apache.org/) mit Tomcat kommunizieren kann. Historisch gesehen war Apache beim Bereitstellen statischer Inhalte viel schneller als Tomcat. Die Idee besteht darin, Apache den statischen Inhalt bereitstellen zu lassen, wenn möglich, aber die Anfrage für Tomcat-bezogene Inhalte an Tomcat weiterzuleiten.
> Das ajp13-Protokoll ist paketorientiert. Ein binäres Format wurde vermutlich aus Gründen der Leistung gegenüber dem lesbareren Klartext gewählt. Der Webserver kommuniziert über TCP-Verbindungen mit dem Servlet-Container. Um den teuren Vorgang der Socket-Erstellung zu reduzieren, versucht der Webserver, persistente TCP-Verbindungen zum Servlet-Container aufrechtzuerhalten und eine Verbindung für mehrere Anfrage-/Antwortzyklen wiederzuverwenden.
Wenn der AJP-Port freigegeben ist, könnte Tomcat anfällig für die Ghostcat-Schwachstelle sein. Hier ist ein [Exploit](https://www.exploit-db.com/exploits/48143), der mit diesem Problem funktioniert.
Ghostcat ist eine LFI-Schwachstelle, jedoch etwas eingeschränkt: Es können nur Dateien aus einem bestimmten Pfad abgerufen werden. Dennoch können dies Dateien wie `WEB-INF/web.xml` sein, die wichtige Informationen wie Anmeldeinformationen für die Tomcat-Schnittstelle preisgeben können, abhängig von der Serverkonfiguration.
Wenn wir auf einen offenen AJP-Proxy-Port (8009 TCP) stoßen, können wir Nginx mit dem `ajp_module` verwenden, um auf den "versteckten" Tomcat Manager zuzugreifen. Dies kann erreicht werden, indem der Nginx-Quellcode heruntergeladen und das erforderliche Modul hinzugefügt wird, wie folgt:
Nginx is a popular web server and reverse proxy server that is often used to serve static content, handle SSL/TLS termination, and load balance traffic to backend servers. In recent years, containerization has become a popular way to deploy and manage applications, and Docker has emerged as a leading containerization platform. Docker allows you to package an application and its dependencies into a container, which can then be run on any system that has Docker installed.
To run Nginx in a Docker container, you first need to create a Dockerfile. This file specifies the base image to use, any additional packages to install, and the commands to run when the container starts. Here is an example Dockerfile for running Nginx:
```docker
FROM nginx:latest
COPY nginx.conf /etc/nginx/nginx.conf
COPY default.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
```
In this Dockerfile, we start with the latest version of the Nginx base image. We then copy our custom configuration files, `nginx.conf` and `default.conf`, into the appropriate locations in the container. The `EXPOSE` directive tells Docker to expose port 80, which is the default port for HTTP traffic. Finally, the `CMD` directive specifies the command to run when the container starts, which in this case is `nginx -g "daemon off;"`.
This command tells Docker to build an image with the tag `my-nginx` using the Dockerfile in the current directory. The `-t` flag specifies the tag to use, and the `.` at the end of the command specifies the build context, which is the current directory.
After the image has been built, you can run a container based on that image by running the following command:
```bash
docker run -d -p 80:80 my-nginx
```
This command tells Docker to run a container based on the `my-nginx` image in detached mode (`-d`), and to map port 80 on the host to port 80 in the container (`-p 80:80`). This allows you to access the Nginx server running in the container from your host machine.
You can then access the Nginx server by opening a web browser and navigating to `http://localhost`. If everything is set up correctly, you should see the default Nginx welcome page.
That's it! You now have a Dockerized version of Nginx up and running. You can customize the configuration files and add additional features as needed.
Das Auftreten eines offenen Ports 8009 ohne andere zugängliche Web-Ports ist selten. Es ist jedoch immer noch möglich, ihn mit **Metasploit** auszunutzen. Durch die Nutzung von **Apache** als Proxy können Anfragen auf den Port 8009 von **Tomcat** umgeleitet werden.
Diese Konfiguration bietet das Potenzial, Intrusion Detection und Prevention Systeme (IDS/IPS) zu umgehen, aufgrund der binären Natur des AJP-Protokolls, obwohl diese Fähigkeit nicht verifiziert wurde. Indem Sie einen regulären Metasploit Tomcat-Exploit auf `127.0.0.1:80` lenken, können Sie effektiv die Kontrolle über das Zielssystem übernehmen.
Treten Sie dem [**HackenProof Discord**](https://discord.com/invite/N3FrSbmwdy) Server bei, um mit erfahrenen Hackern und Bug-Bounty-Jägern zu kommunizieren!
<summary><strong>Lernen Sie AWS-Hacking von Null auf Held mit</strong><ahref="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
* Wenn Sie Ihr **Unternehmen in HackTricks bewerben möchten** oder **HackTricks als PDF herunterladen möchten**, überprüfen Sie die [**ABONNEMENTPLÄNE**](https://github.com/sponsors/carlospolop)!
* Holen Sie sich das [**offizielle PEASS & HackTricks-Merchandise**](https://peass.creator-spring.com)
* Entdecken Sie [**The PEASS Family**](https://opensea.io/collection/the-peass-family), unsere Sammlung exklusiver [**NFTs**](https://opensea.io/collection/the-peass-family)
* **Treten Sie der** 💬 [**Discord-Gruppe**](https://discord.gg/hRep4RUj7f) oder der [**Telegramm-Gruppe**](https://t.me/peass) bei oder **folgen** Sie uns auf **Twitter** 🐦 [**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
* **Teilen Sie Ihre Hacking-Tricks, indem Sie PRs an die** [**HackTricks**](https://github.com/carlospolop/hacktricks) und [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) GitHub-Repositories senden.