PoC: Special character escape attempt
continuous-integration/drone/push Build is failing Details

password-decoding
Illia Chub 2022-01-11 15:03:30 +02:00
parent 0a1aec1353
commit e541fa7882
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ steps:
- >
curl -s -H "Authorization: Bearer $PASSWORD" 'https://api.hetzner.cloud/v1/servers' > .machine.json
- >
export machineip = $( 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/"//' )
- echo "$machineip"
export machineip = $( 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 )
- echo $machineip
- >
curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=$DOMAIN"
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"