mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-22 12:43:23 +00:00
73 lines
4.6 KiB
Markdown
73 lines
4.6 KiB
Markdown
# 9042/9160 - Pentesting Cassandra
|
||
|
||
{% hint style="success" %}
|
||
Learn & practice AWS Hacking:<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">\
|
||
Learn & practice GCP Hacking: <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)
|
||
|
||
<details>
|
||
|
||
<summary>Support HackTricks</summary>
|
||
|
||
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
|
||
* **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
||
</details>
|
||
{% endhint %}
|
||
|
||
## Basic Information
|
||
|
||
**Apache Cassandra** είναι μια **υψηλά κλιμακούμενη**, **υψηλής απόδοσης** κατανεμημένη βάση δεδομένων σχεδιασμένη να διαχειρίζεται **μεγάλες ποσότητες δεδομένων** σε πολλούς **κοινών διακομιστές**, παρέχοντας **υψηλή διαθεσιμότητα** χωρίς **ενιαίο σημείο αποτυχίας**. Είναι μια μορφή **βάσης δεδομένων NoSQL**.
|
||
|
||
Σε πολλές περιπτώσεις, μπορεί να διαπιστώσετε ότι η Cassandra δέχεται **οποιεσδήποτε διαπιστευτήρια** (καθώς δεν υπάρχουν ρυθμισμένα) και αυτό θα μπορούσε ενδεχομένως να επιτρέψει σε έναν επιτιθέμενο να **καταμετρήσει** τη βάση δεδομένων.
|
||
|
||
**Προεπιλεγμένη θύρα:** 9042,9160
|
||
```
|
||
PORT STATE SERVICE REASON
|
||
9042/tcp open cassandra-native Apache Cassandra 3.10 or later (native protocol versions 3/v3, 4/v4, 5/v5-beta)
|
||
9160/tcp open cassandra syn-ack
|
||
```
|
||
## Enumeration
|
||
|
||
### Χειροκίνητη
|
||
```bash
|
||
pip install cqlsh
|
||
cqlsh <IP>
|
||
#Basic info enumeration
|
||
SELECT cluster_name, thrift_version, data_center, partitioner, native_protocol_version, rack, release_version from system.local;
|
||
#Keyspace enumeration
|
||
SELECT keyspace_name FROM system.schema_keyspaces;
|
||
desc <Keyspace_name> #Decribe that DB
|
||
desc system_auth #Describe the DB called system_auth
|
||
SELECT * from system_auth.roles; #Retreive that info, can contain credential hashes
|
||
SELECT * from logdb.user_auth; #Can contain credential hashes
|
||
SELECT * from logdb.user;
|
||
SELECT * from configuration."config";
|
||
```
|
||
### Automated
|
||
|
||
Δεν υπάρχουν πολλές επιλογές εδώ και το nmap δεν αποκτά πολλές πληροφορίες
|
||
```bash
|
||
nmap -sV --script cassandra-info -p <PORT> <IP>
|
||
```
|
||
### [**Brute force**](../generic-methodologies-and-resources/brute-force.md#cassandra)
|
||
|
||
### **Shodan**
|
||
|
||
`port:9160 Cluster`\
|
||
`port:9042 "Invalid or unsupported protocol version"`
|
||
|
||
{% hint style="success" %}
|
||
Μάθετε & εξασκηθείτε στο AWS Hacking:<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: <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)
|
||
|
||
<details>
|
||
|
||
<summary>Support HackTricks</summary>
|
||
|
||
* Ελέγξτε τα [**σχέδια συνδρομής**](https://github.com/sponsors/carlospolop)!
|
||
* **Εγγραφείτε στην** 💬 [**ομάδα Discord**](https://discord.gg/hRep4RUj7f) ή στην [**ομάδα telegram**](https://t.me/peass) ή **ακολουθήστε** μας στο **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
* **Μοιραστείτε κόλπα hacking υποβάλλοντας PRs στα** [**HackTricks**](https://github.com/carlospolop/hacktricks) και [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
||
</details>
|
||
{% endhint %}
|