mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2024-11-23 04:21:27 +00:00
PoC: Special character escape attempt
This commit is contained in:
parent
b71926d9b8
commit
bc81227c6e
10
.drone.yml
10
.drone.yml
|
@ -28,12 +28,16 @@ steps:
|
||||||
from_secret: DOMAIN
|
from_secret: DOMAIN
|
||||||
ZONE_ID:
|
ZONE_ID:
|
||||||
from_secret: ZONE_ID
|
from_secret: ZONE_ID
|
||||||
machineip: >
|
|
||||||
$(curl -s -H "Authorization: Bearer $PASSWORD" 'https://api.hetzner.cloud/v1/servers' > .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/"//')
|
|
||||||
|
|
||||||
commands:
|
commands:
|
||||||
|
- >
|
||||||
|
export machineip = $(curl -s -H "Authorization: Bearer $PASSWORD" 'https://api.hetzner.cloud/v1/servers' > .machine.json
|
||||||
- echo $machineip
|
- echo $machineip
|
||||||
|
- 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/"//')
|
||||||
|
- >
|
||||||
|
export machineip=$(cat .machine.json);
|
||||||
- >
|
- >
|
||||||
curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=$DOMAIN"
|
curl -s -X GET "https://api.cloudflare.com/client/v4/zones?name=$DOMAIN"
|
||||||
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
||||||
|
|
Loading…
Reference in a new issue