Regenerate the OOB subdomain
curl --request POST \
--url https://aquila.attaxr.com/api/oob/subdomain/regenerate \
--cookie better-auth.session_token=const options = {method: 'POST', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/oob/subdomain/regenerate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/oob/subdomain/regenerate"
headers = {"cookie": "better-auth.session_token="}
response = requests.post(url, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}OOB
Regenerate the OOB subdomain
Issues or redraws the caller’s single random subdomain (the endpoint label derived from their interactsh registration), removing the previous subdomain’s DNS record.
POST
/
api
/
oob
/
subdomain
/
regenerate
Regenerate the OOB subdomain
curl --request POST \
--url https://aquila.attaxr.com/api/oob/subdomain/regenerate \
--cookie better-auth.session_token=const options = {method: 'POST', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/oob/subdomain/regenerate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/oob/subdomain/regenerate"
headers = {"cookie": "better-auth.session_token="}
response = requests.post(url, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Authorizations
apiKeyCookieapiKeyHeaderbearerAuth
Browser session cookie set by Better Auth sign-in.
Response
The new endpoint status and hostname.

