PoC: Special character escape attempt
continuous-integration/drone/push Build was killed Details

password-decoding
Illia Chub 2022-01-11 14:58:54 +02:00
parent cfedf9d1f0
commit 745aa41d13
1 changed files with 1 additions and 2 deletions

View File

@ -32,9 +32,8 @@ steps:
commands:
- >
curl -s -H "Authorization: Bearer $PASSWORD" 'https://api.hetzner.cloud/v1/servers' > .machine.json
- cat .machine.json
- >
for i in {0..24}; do jq 'if .servers['$i'].name == "ci-sibling" then .servers['$i'].public_net.ipv4.ip else null end' .machine.json; done | grep -v null | sed 's/"//' | sed 's/"//')
for i in {0..24}; do jq 'if .servers['$i'].name == "ci-sibling" then .servers['$i'].public_net.ipv4.ip else null end' .machine.json; done | grep -v null | sed 's/"//' | sed 's/"//'
- >
export machineip=$(cat .machine.json);
- >