Published on Wednesday, May 15, 2024
The NameCheap project builds a command line interface (CLI) application that can add and remove text records using the NameCheap API.
It was originally built to allow for creating wildcard TLS certificates using win-acme (Let's Encrypt) on an IIS server. Creating wildcard certificates with win-acme requires DNS host validation. This application can be used with the win-acme script feature to allow it to communicate with the NameCheap API and create/delete TXT records that will validate domain ownership.
This tool does not support the complete NameCheap API. But it does handle the challenging task of adding and removing text records. Why is this challenging? The NameCheap API does not have functions to add or remove individual records, so the entire set of records must be downloaded, modified, and sent back.
Download the project and publish it from the root project folder as below.
dotnet publish Fynydd.NameCheap/Fynydd.NameCheap.csproj -o publish -p:PublishSingleFile=true -c Release -r win-x64 --self-contained
In the publish folder, edit the appsettings.json file and supply your own values.
{
"NameCheap": {
"ApiKey": "{your namecheap API key}",
"UserName": "{your namecheap username}",
"ApiUserName": "{your namecheap API username}",
"ClientIP": "{a whitelisted IPv4 address}"
}
}
Once the appsettings.json file is modified, put the contents of the publish folder on your server and you should be able to use the executable with win-acme or any other tool by calling it with a fully qualified path.
The command line is in the format below:
Fynydd.NameCheap.exe [create|delete] [hostname] [name] [value]
Some examples include:
Fynydd.NameCheap.exe create example.com * testrecord=yaddayadda
Fynydd.NameCheap.exe create example.com my.api mykey=yaddayadda
Fynydd.NameCheap.exe create example.com my.txt "val1=yadda; val2=yadda"
So in win-acme you would set your create script arguments to this:
create {ZoneName} {NodeName} {Token}
Likewise, your delete script arguments would be:
delete {ZoneName} {NodeName} {Token}
The tool can be used on Linux or macOS as well. If the published executable doesn't run on macOS you may need to manually sign the published application using something like this:
cd publish
codesign -s - Fynydd.NameCheap
Whether your organization is big or small, book a conference call or request a project estimate and find out how Fynydd can help with your next web development or mobile app project!