1

Really sketchy AMPRDNS automation

This commit is contained in:
Evan Pratten 2024-09-26 15:16:03 -04:00
parent 7a2502ba70
commit 73482e5a26
2 changed files with 48 additions and 0 deletions

28
scripts/amprdns-delete-record Executable file
View File

@ -0,0 +1,28 @@
#! /bin/bash
# A really hacky way of programatically deleting a record from an ampr.org zone
set -e
# Require a subdomain ID and record ID
if [[ -z "$1" || -z "$2" ]]; then
echo "Usage: $0 <subdomain_id> <record_id>"
echo " subdomain_id: The numeric ID of your subdomain (probably 39)"
echo " record_id: The numeric ID of the record to delete"
exit 1
fi
# Ask for the session cookie
if [[ -z "$COOKIE" ]]; then
echo -n "Enter your session cookie: "
read -s COOKIE
fi
# Ask for a token
if [[ -z "$TOKEN" ]]; then
echo -n "Enter your CSRF token: "
read -s TOKEN
fi
# Delete the record
echo "Deleting record $2 from subdomain $1"
curl -X POST "https://portal.ampr.org/subdomain-records/$2" -H "Cookie: $COOKIE" -H "Accept: application/json" --data "_method=DELETE&_token=$TOKEN" 2>/dev/null
echo

20
scripts/amprdns-list-records Executable file
View File

@ -0,0 +1,20 @@
#! /bin/bash
# A really hacky way of exposing the list of configured records on a ampr.org zone
set -e
# Require a subdomain ID and page number
if [[ -z "$1" || -z "$2" ]]; then
echo "Usage: $0 <subdomain_id> <page>"
echo " subdomain_id: The numeric ID of your subdomain (probably 39)"
echo " page: The page number to fetch"
exit 1
fi
# Ask for the session cookie
if [[ -z "$COOKIE" ]]; then
echo -n "Enter your session cookie: "
read -s COOKIE
fi
# Fetch the records
curl -X GET "https://portal.ampr.org/subdomain-records/$1" -H "Cookie: $COOKIE" -H "Accept: application/json" 2>/dev/null | tr -d " " | grep -E "^action|^onsubmit" | tr -d "\n" | tr ">" "\n" | cut -d '"' -f 2,4 | tr '"' "|" | tr "'" "|" | tr "/" "|" | cut -d "|" -f 3,5,7 | column -t -s "|"