mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 04:45:48 +03:00
[GH-ISSUE #52] Bad Subdomain #16
Labels
No labels
Documentation
Documentation
bug
enhancement
feature request
feature request
help wanted
pull-request
question
security
security
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/acme-dns#16
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @lukepolo on GitHub (Mar 14, 2018).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/52
Im getting a bad subdomain currently , Ill take down this instance once i get it resolved but :
Response :
{ error : 'bad_subdomain'}Is there something im doing wrong?
@cpu commented on GitHub (Mar 14, 2018):
@lukepolo What commit of
acme-dnsare you running? I think you hit the same thing I did that I fixed in https://github.com/joohoi/acme-dns/pull/42Sending a
"txt"with the value"test"will be rejected because it isn't exactly 43 characters long like an ACME DNS-01 challenge response. Prior tod542ee03b5acme-dnsreturned a "bad_subdomain" error when the "txt" was invalid.@cpu commented on GitHub (Mar 14, 2018):
You can test if my theory is correct by sending
"txt":"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"instead.@lukepolo commented on GitHub (Mar 14, 2018):
Yup it worked ! Thanks for that.
@cpu commented on GitHub (Mar 14, 2018):
@lukepolo Happy to help!