mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-05-21 14:26:13 +00:00
Merge branch 'is-a-dev:main' into main
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
---
|
||||
name: bug
|
||||
about: Use this template to report any bugs you've encountered related to the project
|
||||
title: 'What bug did you encounter?'
|
||||
title: "What bug did you encounter?"
|
||||
labels: bug
|
||||
|
||||
---
|
||||
|
||||
### Your subdomain
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
---
|
||||
name: question
|
||||
about: Use this template to ask any questions about the service
|
||||
title: 'Whats your question'
|
||||
title: "Whats your question"
|
||||
labels: question
|
||||
|
||||
---
|
||||
|
||||
### Your question
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
---
|
||||
name: report-abuse
|
||||
about: Use this template to report abusive domains
|
||||
title: 'Report abuse'
|
||||
title: "Report abuse"
|
||||
labels: report-abuse
|
||||
|
||||
---
|
||||
|
||||
### Domain
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
---
|
||||
name: suggestion
|
||||
about: Use this template for feedbacks and suggestions
|
||||
title: 'Feedback/suggestion'
|
||||
title: "Feedback/suggestion"
|
||||
labels: suggestion
|
||||
|
||||
---
|
||||
|
||||
### What do you want added?
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
---
|
||||
name: support
|
||||
about: Use this template if you need any support with your domain
|
||||
title: 'Support'
|
||||
title: "Support"
|
||||
labels: support
|
||||
|
||||
---
|
||||
|
||||
### Your subdomain
|
||||
|
||||
@@ -1,16 +1,21 @@
|
||||
<!-- Please complete this template so we can review your pull request faster. -->
|
||||
<!--
|
||||
!!!
|
||||
YOU MUST FILL OUT THIS TEMPLATE ENTIRELY FOR YOUR PR TO BE ACCEPTED, IT IS NOT OPTIONAL.
|
||||
IF YOU DO NOT FILL OUT THIS PR TEMPLATE TO ITS ENTIRETY, YOUR PR WILL BE IMMEDIATELY DENIED.
|
||||
!!!
|
||||
-->
|
||||
|
||||
## Requirements
|
||||
Unless explicitly specified otherwise by a **maintainer** or in the requirement description, your domain must pass **ALL** the indicated requirements above.
|
||||
# Requirements
|
||||
<!-- Your domain MUST pass ALL the requirements below, otherwise it WILL BE DENIED. -->
|
||||
|
||||
Please note that we reserve the rights not to accept any domain at our own discretion.
|
||||
<!-- Change each checkbox to [x] to mark it as checked. Do not keep the spaces between the parentheses. -->
|
||||
|
||||
- [ ] The file is in the `domains` folder and is in the JSON format.
|
||||
- [ ] The file's name is all lowercased and alphanumeric. <!-- Your file's name is yourname.json, not YourName.json or your_name.json. -->
|
||||
- [ ] You have completed your website. <!-- This is not required if the domain you're registering is for emails. -->
|
||||
- [ ] The website is reachable. <!-- This is not required if the domain you're registering is for emails. -->
|
||||
- [ ] The CNAME record doesn't contain `https://` or `/`. <!-- This is not required if you are not using a CNAME record. -->
|
||||
- [ ] There is sufficient information at the `owner` field. <!-- You need to have your email presented at `email` field. If you don't want to provide your email for any reason, you can specify another social platform (e.g. Twitter) so we can contact you. -->
|
||||
- [ ] I have **read** and **understood** the [Terms of Service](https://is-a.dev/terms). <!-- Your domain MUST follow the TOS to be approved. -->
|
||||
- [ ] I understand my domain will be removed if I violate the [Terms of Service](https://is-a.dev/terms).
|
||||
- [ ] My file is in the `domains` directory and has the `.json` file extension.
|
||||
- [ ] My file's name is lowercased and alphanumeric. <!-- Your file's name is yourname.json, not YourName.json or your_name.json. -->
|
||||
- [ ] My website is **reachable** and **completed**. <!-- We do not permit simple "Hello, world!" or simply copied websites. -->
|
||||
- [ ] I have provided sufficient contact information in the `owner` key. <!-- Provide your email in the `email` field or another platform (e.g., X, Discord) for contact. -->
|
||||
|
||||
## Website Link/Preview
|
||||
<!-- Please provide a link or preview of your website below. If you can't make the website visible, then an image of the website is also fine! -->
|
||||
# Website Preview
|
||||
<!-- Provide a link or screenshot of your website below. You MUST complete this step for your PR to be approved. -->
|
||||
|
||||
+3
-3
@@ -1,6 +1,6 @@
|
||||
domain:
|
||||
- domains/*.json
|
||||
- domains/*.json
|
||||
|
||||
documentation:
|
||||
- ./*.md
|
||||
- ./**/*.md
|
||||
- ./*.md
|
||||
- ./**/*.md
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
name: Validation
|
||||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
@@ -19,17 +19,6 @@ concurrency:
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
dns:
|
||||
name: DNS
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Check
|
||||
uses: is-a-dev/dnscontrol-action@main
|
||||
with:
|
||||
args: check
|
||||
|
||||
tests:
|
||||
name: Tests
|
||||
runs-on: ubuntu-latest
|
||||
@@ -38,4 +27,4 @@ jobs:
|
||||
|
||||
- run: npm install
|
||||
|
||||
- run: npm test
|
||||
- run: npx ava tests/*.test.js
|
||||
+10
-10
@@ -1,13 +1,13 @@
|
||||
name: Pull Request Labeler
|
||||
on:
|
||||
schedule:
|
||||
- cron: '*/10 * * * *'
|
||||
schedule:
|
||||
- cron: "*/10 * * * *"
|
||||
jobs:
|
||||
labeler:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: docker://docker.io/ilyam8/periodic-pr-labeler:v0.1.1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GITHUB_REPOSITORY: ${{ github.repository }}
|
||||
LABEL_MAPPINGS_FILE: .github/labeler.yml
|
||||
labeler:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: docker://docker.io/ilyam8/periodic-pr-labeler:v0.1.1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GITHUB_REPOSITORY: ${{ github.repository }}
|
||||
LABEL_MAPPINGS_FILE: .github/labeler.yml
|
||||
|
||||
@@ -21,10 +21,15 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
npm install
|
||||
npx ava tests/*.test.js
|
||||
|
||||
- name: Generate creds.json
|
||||
run: echo '{"cloudflare":{"TYPE":"CLOUDFLAREAPI","apitoken":"$CLOUDFLARE_API_TOKEN"}}' > ./creds.json
|
||||
|
||||
- name: Publish
|
||||
- name: Push DNS records
|
||||
uses: is-a-dev/dnscontrol-action@main
|
||||
env:
|
||||
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||
|
||||
+15
-16
@@ -1,21 +1,20 @@
|
||||
name: StaleBOT
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
name: 'Force cleanup'
|
||||
schedule:
|
||||
- cron: "30 14 * * *"
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "30 14 * * *"
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@v3
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
days-before-stale: 7
|
||||
days-before-close: 3
|
||||
stale-issue-message: 'This issue has been marked as stale due to inactivity and will be closed. Comment anything on this issue to prevent it'
|
||||
stale-pr-message: 'This pull request has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it'
|
||||
exempt-issue-labels: 'no-stale'
|
||||
exempt-pr-labels: 'no-stale'
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@v3
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
days-before-stale: 7
|
||||
days-before-close: 3
|
||||
stale-issue-message: "This issue has been marked as stale due to inactivity and will be closed. Comment anything on this issue to prevent it"
|
||||
stale-pr-message: "This pull request has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it"
|
||||
exempt-issue-labels: "no-stale"
|
||||
exempt-pr-labels: "no-stale"
|
||||
|
||||
+2
-20
@@ -4,27 +4,9 @@ This is a Code of Conduct for any interactions in this repository. This includes
|
||||
- **Use common sense** - It's not that complicated. Just be nice to people.
|
||||
- **Don't abuse the service** - This service is intended for developers to get a cleaner URL for their personal websites.
|
||||
- **No wrongful use** - Do not use this service as a way, to promote hacking, scams, fraud, and other illegal activites.
|
||||
- **Follow our TOS** - You must follow our [Terms of Service](https://github.com/is-a-dev/register/blob/main/TERMS_OF_SERVICE.md).
|
||||
|
||||
## Reporting abuse
|
||||
If you believe a domain that has been registered using this service is abusing our terms, you can report it by creating an issue.
|
||||
|
||||
The abuse reports will be investigated and the necessary action will be taken.
|
||||
|
||||
## Explicitly disallowed usage
|
||||
- Online stores/shopping websites
|
||||
- Gambling websites
|
||||
- Game cheat sites
|
||||
- CDNs distributing potentially malicious content (APKs, executables)
|
||||
- 'Unblocked' gaming websites
|
||||
- Alternate URLs for commonly blocked websites (e.g. gambling/casino websites)
|
||||
- Websites containing 18+ content
|
||||
- Mass emailing (e.g. newsletters, mailing lists)
|
||||
- File-sharing or torrenting websites distributing copyrighted material
|
||||
- Cryptocurrency mining sites or tools
|
||||
- Hacking or cybersecurity exploit websites
|
||||
- Phishing or fraudulent websites
|
||||
- Websites hosting illegal or pirated software
|
||||
- Proxy or VPN services bypassing network restrictions
|
||||
- Online services for identity theft or forgery
|
||||
- Platforms promoting self-harm or violence
|
||||
- Illegal drug marketplaces
|
||||
Abuse reports will be investigated and the necessary action will be taken.
|
||||
|
||||
+2
-11
@@ -1,17 +1,8 @@
|
||||
# Contributing
|
||||
When contributing to this repository, please first discuss the change you wish to make via issue before making a change.
|
||||
|
||||
You should also read up on this project's [code of conduct](https://github.com/is-a-dev/register/blob/main/CODE_OF_CONDUCT.md).
|
||||
|
||||
## Pull requests
|
||||
- Adding, changing or removing a domain file you own.
|
||||
- Fixing a bug in the scripts or CI.
|
||||
- Fix an error in the documentation.
|
||||
|
||||
#### Domains
|
||||
- Your pull request will be reviewed and merged into `main` branch.
|
||||
- The records will be published as soon as the PR is merged.
|
||||
- The changes should reflect soon after publishing.
|
||||
- If the PR template is updated, any pre-existing PRs must follow the updated template, in order to be merged.
|
||||
- We reserve the right to deny any pull request for any reason.
|
||||
|
||||
## Issues
|
||||
- **Report an abusive domain** - Create a new issue with the label `report-abuse`.
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
<h1 align="center">is-a.dev</h1>
|
||||
|
||||
<p align="center"><strong>is-a-dev</strong> is a service that allows developers to get a sweet-looking ".is-a.dev" domain for their personal websites.</p>
|
||||
<p align="center"><strong>is-a.dev</strong> is a service that allows developers to get a sweet-looking <code>.is-a.dev</code> domain for their personal websites.</p>
|
||||
|
||||
## Announcements & Status Updates
|
||||
Please join our [Discord server](https://discord.gg/is-a-dev-830872854677422150) for announcements, updates & upgrades, and downtimes regarding the service.
|
||||
@@ -24,30 +24,32 @@ Not all of these will be posted on GitHub, however they will always be posted in
|
||||
## How to Register
|
||||
> If you want a more visual guide, check out [this blog post](https://wdh.gg/tX3ghge).
|
||||
|
||||
- [Fork](https://github.com/is-a-dev/register/fork) and star this repository
|
||||
- [Fork](https://github.com/is-a-dev/register/fork) this repository
|
||||
- Add a new file called `your-domain-name.json` in the `domains` folder to register `your-domain-name.is-a.dev`
|
||||
- [Read the documentation](https://is-a.dev/docs)
|
||||
- [Read the documentation](https://docs.is-a.dev)
|
||||
- If you are applying for NS records please read [this](#ns-records).
|
||||
- Your pull request will be reviewed and merged. *Make sure to keep an eye on it incase we need you to make any changes!*
|
||||
- After the pull request is merged, please allow up to 24 hours for the changes to propagate
|
||||
- Enjoy your new `.is-a.dev` domain!
|
||||
- Enjoy your new `.is-a.dev` domain! Please consider leaving us a star ⭐️ to help support us!
|
||||
|
||||
### NS Records
|
||||
When applying for NS records, please be aware we already support a [wide range of DNS records](https://is-a.dev/docs/faq/#which-records-are-supported), so you may not need them.
|
||||
When applying for NS records, please be aware we already support a [wide range of DNS records](https://docs.is-a.dev/faq/#which-records-are-supported), so you may not need them.
|
||||
|
||||
In your PR, please provide sufficient reasoning of why you need NS records, to help us mitigate potential abuse. It is helpful to refer to the [FAQ](https://is-a.dev/docs/faq/#who-can-use-ns-records) to see if you will likely be approved for NS records or not. You can see a good example of a request for NS records [here](https://github.com/is-a-dev/register/pull/17592).
|
||||
In your PR, please explain why you need NS records, including examples, to help mitigate potential abuse. Refer to the [FAQ](https://docs.is-a.dev/faq/#who-can-use-ns-records) for guidelines on allowed usage. Good examples of NS record requests are [#17592](https://github.com/is-a-dev/register/pull/17592) and [#18026](https://github.com/is-a-dev/register/pull/18026).
|
||||
|
||||
***Pull requests adding NS records without sufficient reasoning will be closed.***
|
||||
|
||||
> Also see: [Why are you so strict with NS records?](https://is-a.dev/docs/faq/#why-are-you-so-strict-with-ns-records)
|
||||
> Also see: [Why are you so strict with NS records?](https://docs.is-a.dev/faq/#why-are-you-so-strict-with-ns-records)
|
||||
|
||||
> [!NOTE]
|
||||
> You may bypass these requirements by [donating](https://wdh.gg/pvNCdvs) a small amount of $2 (you can also donate via [GitHub Sponsors](https://wdh.gg/sponsor)). You also get a special role in our [Discord server](https://discord.gg/is-a-dev-830872854677422150)!
|
||||
> You can bypass these requirements[^1] by donating just $2 [here](https://wdh.gg/pvNCdvs), or via [GitHub Sponsors](https://wdh.gg/sponsor). As a thank-you, you'll also receive a special role in our [Discord server](https://discord.gg/is-a-dev-830872854677422150)!
|
||||
>
|
||||
> If you decide to donate, please email william@is-a.dev (or DM `@williamharrison` on Discord) with your payment receipt and your pull request link.
|
||||
> If you donate, email william@is-a.dev or DM `@williamharrison` on Discord with your receipt and PR link.
|
||||
|
||||
[^1]: Requests deemed to be made with malicious intent may be denied, with a refund provided.
|
||||
|
||||
## Report Abuse
|
||||
If you find any subdomains being abused, please report them by [creating an issue](https://github.com/is-a-dev/register/issues/new?assignees=&labels=report-abuse&projects=&template=report-abuse.md&title=Report+abuse) with the relevant evidence.
|
||||
If you find any subdomains being used for abusive purposes, please report them by [creating an issue](https://github.com/is-a-dev/register/issues/new?assignees=&labels=report-abuse&projects=&template=report-abuse.md&title=Report+abuse) with the relevant evidence.
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
# Terms of Service
|
||||
Welcome to **is-a.dev**, a free subdomain service provided to developers and individuals. By using our service, you agree to the following Terms of Service ("Terms"). Please read them carefully.
|
||||
|
||||
## 1. Acceptance of Terms
|
||||
By accessing or using the is-a.dev subdomain service, you acknowledge that you have read, understood, and agree to be bound by these Terms. If you do not agree, you may not use the service.
|
||||
|
||||
## 2. Eligibility
|
||||
To use the is-a.dev service, you must:
|
||||
|
||||
1. Be at least 13 years old.
|
||||
2. Use the service for lawful purposes only.
|
||||
3. Provide accurate and truthful information during the registration process.
|
||||
|
||||
## 3. Service Description
|
||||
The is-a.dev service allows users to register a subdomain under the "is-a.dev" domain. This service is offered "as-is" without guarantees of uptime, support, or permanence. Subdomains are intended solely for developers and non-commercial projects. Commercial use is strictly prohibited.
|
||||
|
||||
We reserve the right to deny any subdomain registration request for any reason.
|
||||
|
||||
## 4. Prohibited Activities
|
||||
You agree not to use the is-a.dev service for:
|
||||
|
||||
- Hosting illegal content, including but not limited to pirated software, malware, or copyrighted materials without authorization.
|
||||
- Conducting phishing, spam, or other malicious activities.
|
||||
- Promoting hate speech, violence, or discrimination.
|
||||
- Impersonating individuals, organizations, or entities without consent.
|
||||
- Engaging in activities that violate local, national, or international laws.
|
||||
- Any commercial purposes, including advertising, selling products, or hosting e-commerce platforms.
|
||||
- Online stores/shopping websites.
|
||||
- Gambling websites.
|
||||
- Game cheat sites.
|
||||
- CDNs distributing potentially malicious content (e.g., APKs, executables).
|
||||
- 'Unblocked' gaming websites.
|
||||
- Alternate URLs for commonly blocked websites (e.g., gambling/casino websites).
|
||||
- Websites containing 18+ content.
|
||||
- Mass emailing (e.g., newsletters, mailing lists).
|
||||
- File-sharing or torrenting websites distributing copyrighted material.
|
||||
- Cryptocurrency mining sites or tools.
|
||||
- Hacking or cybersecurity exploit websites.
|
||||
- Phishing or fraudulent websites.
|
||||
- Websites hosting illegal or pirated software.
|
||||
- Proxy or VPN services bypassing network restrictions.
|
||||
- Online services for identity theft or forgery.
|
||||
- Platforms promoting self-harm or violence.
|
||||
- Illegal drug marketplaces.
|
||||
- Proxy sites (e.g., embedding other websites).
|
||||
|
||||
Additionally, users must comply with [GitHub’s Terms of Service](https://docs.github.com/en/site-policy/github-terms/github-terms-of-service) where applicable.
|
||||
|
||||
Violation of these terms may result in the immediate termination of your subdomain.
|
||||
|
||||
## 5. Ownership and Intellectual Property
|
||||
1. **Subdomain Ownership**: While you are granted the right to use a subdomain, ownership of the "is-a.dev" domain remains with the service provider.
|
||||
2. **Content Ownership**: You retain ownership of any content you host on your subdomain. However, you grant us a license to use your subdomain registration data (e.g., DNS records) to operate the service.
|
||||
|
||||
## 6. Termination of Service
|
||||
We reserve the right to suspend, terminate, or revoke your subdomain at any time, for any reason, including but not limited to violations of these Terms, operational considerations, or at our sole discretion.
|
||||
|
||||
## 7. Privacy
|
||||
For privacy-related inquiries, please contact us at privacy@is-a.dev. We are not responsible for any data or privacy breaches resulting from the use of our service.
|
||||
|
||||
## 8. Disclaimer of Warranties
|
||||
The is-a.dev service is provided "as-is" and "as available." We make no warranties, expressed or implied, regarding the service’s functionality, reliability, or suitability for any particular purpose.
|
||||
|
||||
## 9. Limitation of Liability
|
||||
To the fullest extent permitted by law, is-a.dev and its operators shall not be liable for any direct, indirect, incidental, special, or consequential damages arising from your use or inability to use the service.
|
||||
|
||||
## 10. Indemnification
|
||||
You agree to indemnify and hold harmless is-a.dev, its operators, and affiliates from any claims, losses, liabilities, or expenses arising from your use of the service or violation of these Terms.
|
||||
|
||||
## 11. Modification of Terms
|
||||
We reserve the right to update or modify these Terms at any time. Changes will be effective immediately upon posting. Your continued use of the service constitutes acceptance of the updated Terms.
|
||||
|
||||
## 12. Governing Law
|
||||
These Terms are governed by and construed in accordance with the laws of Australia. Any disputes shall be resolved exclusively in the courts of Australia.
|
||||
|
||||
## 13. Contact Information
|
||||
For questions or concerns about these Terms, please contact us at support@is-a.dev.
|
||||
|
||||
By using the is-a.dev service, you agree to these Terms of Service.
|
||||
+8
-45
@@ -29,18 +29,14 @@ for (var subdomain in domains) {
|
||||
// Handle A records
|
||||
if (domainData.record.A) {
|
||||
for (var a in domainData.record.A) {
|
||||
records.push(
|
||||
A(subdomainName, IP(domainData.record.A[a]), proxyState)
|
||||
);
|
||||
records.push(A(subdomainName, IP(domainData.record.A[a]), proxyState));
|
||||
}
|
||||
}
|
||||
|
||||
// Handle AAAA records
|
||||
if (domainData.record.AAAA) {
|
||||
for (var aaaa in domainData.record.AAAA) {
|
||||
records.push(
|
||||
AAAA(subdomainName, domainData.record.AAAA[aaaa], proxyState)
|
||||
);
|
||||
records.push(AAAA(subdomainName, domainData.record.AAAA[aaaa], proxyState));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -48,29 +44,14 @@ for (var subdomain in domains) {
|
||||
if (domainData.record.CAA) {
|
||||
for (var caa in domainData.record.CAA) {
|
||||
var caaRecord = domainData.record.CAA[caa];
|
||||
records.push(
|
||||
CAA(
|
||||
subdomainName,
|
||||
caaRecord.flags,
|
||||
caaRecord.tag,
|
||||
caaRecord.value
|
||||
)
|
||||
);
|
||||
records.push(CAA(subdomainName, caaRecord.tag, caaRecord.value));
|
||||
}
|
||||
}
|
||||
|
||||
// Handle CNAME records
|
||||
if (domainData.record.CNAME) {
|
||||
// Allow CNAME record on root
|
||||
if (subdomainName === "@") {
|
||||
records.push(
|
||||
ALIAS(subdomainName, domainData.record.CNAME + ".", proxyState)
|
||||
);
|
||||
} else {
|
||||
records.push(
|
||||
CNAME(subdomainName, domainData.record.CNAME + ".", proxyState)
|
||||
);
|
||||
}
|
||||
// Use ALIAS instead of CNAME to support CNAME flattening on the root domain
|
||||
records.push(ALIAS(subdomainName, domainData.record.CNAME + ".", proxyState));
|
||||
}
|
||||
|
||||
// Handle DS records
|
||||
@@ -78,13 +59,7 @@ for (var subdomain in domains) {
|
||||
for (var ds in domainData.record.DS) {
|
||||
var dsRecord = domainData.record.DS[ds];
|
||||
records.push(
|
||||
DS(
|
||||
subdomainName,
|
||||
dsRecord.key_tag,
|
||||
dsRecord.algorithm,
|
||||
dsRecord.digest_type,
|
||||
dsRecord.digest
|
||||
)
|
||||
DS(subdomainName, dsRecord.key_tag, dsRecord.algorithm, dsRecord.digest_type, dsRecord.digest)
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -92,13 +67,7 @@ for (var subdomain in domains) {
|
||||
// Handle MX records
|
||||
if (domainData.record.MX) {
|
||||
for (var mx in domainData.record.MX) {
|
||||
records.push(
|
||||
MX(
|
||||
subdomainName,
|
||||
10 + parseInt(mx),
|
||||
domainData.record.MX[mx] + "."
|
||||
)
|
||||
);
|
||||
records.push(MX(subdomainName, 10 + parseInt(mx), domainData.record.MX[mx] + "."));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -114,13 +83,7 @@ for (var subdomain in domains) {
|
||||
for (var srv in domainData.record.SRV) {
|
||||
var srvRecord = domainData.record.SRV[srv];
|
||||
records.push(
|
||||
SRV(
|
||||
subdomainName,
|
||||
srvRecord.priority,
|
||||
srvRecord.weight,
|
||||
srvRecord.port,
|
||||
srvRecord.target + "."
|
||||
)
|
||||
SRV(subdomainName, srvRecord.priority, srvRecord.weight, srvRecord.port, srvRecord.target + ".")
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Personal Portfolio",
|
||||
"repo": "https://github.com/0spol/0spol.github.io",
|
||||
"owner": {
|
||||
"username": "0spol",
|
||||
"email": "gaparicio368@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "0spol.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "0xbitx",
|
||||
"email": "0xbit25125@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "0xbitx.github.io"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "leopku",
|
||||
"discord": "1168846640464019570"
|
||||
},
|
||||
"record": {
|
||||
"URL": "https://www.himysql.com"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "Personal website",
|
||||
"owner": {
|
||||
"username": "1995parham",
|
||||
"email": "parham.alvani@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "1995parham.github.io"
|
||||
}
|
||||
}
|
||||
+9
-11
@@ -1,12 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "gimmywashere",
|
||||
"discord": "792467650038857748",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G8bQtlAC_K5K-sdnpRQFXtq9H-BJAxXswVmMcZl9dCd4Mx8utIM-wKg-rI20met2wnfK6SNI1dMIFOkdSflITyde93ET8gWwAJNGp18vBl7f416oU7agxTocIXnYiEepVXe2xAqu42dz5eazX_3e_TGFAayBW6mFynhUd2WvFFFIv-BQX1Lh2kTETnV0LBC27Zeiy3J2Nb-9zFyIGgx-I9qars-Q3W2gPwioDbyTc34HWrZrb-v4gDGGEkzCGaO2ct9W7b8BFdWHqsUua3SD59Yec6r8ytCLRpfJp-griYtdKprGl1Md71alh2ntZc8bjXJ6f4dZl_sLvPAArFfvUw.1H7oEmNDK3MLdFoNadP2Kg.xDYLtCuquekDlq9YaIxM63iY2YMEFWd91CxxwuO7uwk8qc9hbQWqBuXA0MQfG_3NRyarb8nNgMGEj0ghKyfxSm1YWQ8M4PK5OPQTub54LiU.8CgG1B1Jv04SYfXkFJhAZQ"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "ammo.lol"
|
||||
}
|
||||
}
|
||||
|
||||
"owner": {
|
||||
"username": "gimmywashere",
|
||||
"discord": "792467650038857748",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G8bQtlAC_K5K-sdnpRQFXtq9H-BJAxXswVmMcZl9dCd4Mx8utIM-wKg-rI20met2wnfK6SNI1dMIFOkdSflITyde93ET8gWwAJNGp18vBl7f416oU7agxTocIXnYiEepVXe2xAqu42dz5eazX_3e_TGFAayBW6mFynhUd2WvFFFIv-BQX1Lh2kTETnV0LBC27Zeiy3J2Nb-9zFyIGgx-I9qars-Q3W2gPwioDbyTc34HWrZrb-v4gDGGEkzCGaO2ct9W7b8BFdWHqsUua3SD59Yec6r8ytCLRpfJp-griYtdKprGl1Md71alh2ntZc8bjXJ6f4dZl_sLvPAArFfvUw.1H7oEmNDK3MLdFoNadP2Kg.xDYLtCuquekDlq9YaIxM63iY2YMEFWd91CxxwuO7uwk8qc9hbQWqBuXA0MQfG_3NRyarb8nNgMGEj0ghKyfxSm1YWQ8M4PK5OPQTub54LiU.8CgG1B1Jv04SYfXkFJhAZQ"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ammo.lol"
|
||||
}
|
||||
}
|
||||
|
||||
+9
-10
@@ -1,11 +1,10 @@
|
||||
{
|
||||
"description": "LIGMATV's URL Manager (aka 2)",
|
||||
"repo": "https://github.com/LIGMATV/links",
|
||||
"owner": {
|
||||
"username": "LIGMATV",
|
||||
"email": "ligmatv.id@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ligmatv.github.io"
|
||||
}
|
||||
}
|
||||
"description": "LIGMATV's URL Manager (aka 2)",
|
||||
"owner": {
|
||||
"username": "LIGMATV",
|
||||
"email": "ligmatv.id@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "ligmatv-links.vercel.app"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "Portfolio and Blog for 20zzy19",
|
||||
"repo": "https://github.com/20zzy19/Portfolioy",
|
||||
"owner": {
|
||||
"username": "20zzy19",
|
||||
"email": "a620zzy@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["98.43.59.193"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"repo": "https://github.com/256javy/256javy.github.io",
|
||||
"owner": {
|
||||
"username": "256javy",
|
||||
"email": "256javiervillalba@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "256javy.github.io"
|
||||
}
|
||||
}
|
||||
+7
-7
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "3geETR",
|
||||
"email": "egemacun@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "3geetr.github.io"
|
||||
}
|
||||
"owner": {
|
||||
"username": "3geETR",
|
||||
"email": "egemacun@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "3geetr.github.io"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
{
|
||||
"description": "3pls0de.is-a.dev.",
|
||||
"repo": "https://github.com/3pls0de",
|
||||
"owner": {
|
||||
"username": "3pls0de",
|
||||
"email": "naji.aka58@gmail.com"
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ahmetunsal",
|
||||
"email": "web.unsalahmet@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"A": ["76.76.21.21"]
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "maskduck",
|
||||
"discord": "716134528409665586"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "maskduck.pages.dev"
|
||||
}
|
||||
}
|
||||
+9
-11
@@ -1,12 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "XikiZxGS",
|
||||
"discord": "1015654462334971925",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kNjv0EEp6UIN8_jPk0TdLMyTslpHdTnysn-P5MDOuH0LfVqLDOyN99OFSrg2vYYuiUM5-4DcKlgbkkL0058Fq241CIaKmwnabVQ2tcEch4QNl3jEbUDUP9sNp6h-D7_AQjHPTnW8P297FrZ2sNkJLabJ5hTgeEuns8CypzoVOy8I6GwdC6aL2OXLwl21L-CEUKHrO0CvLi-OGWp4Lkx1IowXksW8o-y91NKgmal6t7Qxp2K89pJ0byiXIpu9L1aNBYKNfR_Q5_rPmr9XWMiVBojgyog8YPmmweAYO1kViNPJLSZHIth1pOEM2fjZQzaWAUdqK-AgRYyPld0RuutfDw.3zQYmH_sLC-vr73VkslM0A.LDOyObkmMtZ3W48zwT9bVwhqMZsy21eW2CfjUy4k9tRm0XYJqT6GQLt-PeQ9yPcP9TIFDm4TvyZTrMewZCOs1hHrRKHbJnxSdekzx2Hnb_Y.ZglWFD_r-t4Zwp9ojse5Gg"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"CNAME": "xikizxgs.github.io"
|
||||
}
|
||||
}
|
||||
|
||||
"owner": {
|
||||
"username": "XikiZxGS",
|
||||
"discord": "1015654462334971925",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.kNjv0EEp6UIN8_jPk0TdLMyTslpHdTnysn-P5MDOuH0LfVqLDOyN99OFSrg2vYYuiUM5-4DcKlgbkkL0058Fq241CIaKmwnabVQ2tcEch4QNl3jEbUDUP9sNp6h-D7_AQjHPTnW8P297FrZ2sNkJLabJ5hTgeEuns8CypzoVOy8I6GwdC6aL2OXLwl21L-CEUKHrO0CvLi-OGWp4Lkx1IowXksW8o-y91NKgmal6t7Qxp2K89pJ0byiXIpu9L1aNBYKNfR_Q5_rPmr9XWMiVBojgyog8YPmmweAYO1kViNPJLSZHIth1pOEM2fjZQzaWAUdqK-AgRYyPld0RuutfDw.3zQYmH_sLC-vr73VkslM0A.LDOyObkmMtZ3W48zwT9bVwhqMZsy21eW2CfjUy4k9tRm0XYJqT6GQLt-PeQ9yPcP9TIFDm4TvyZTrMewZCOs1hHrRKHbJnxSdekzx2Hnb_Y.ZglWFD_r-t4Zwp9ojse5Gg"
|
||||
},
|
||||
"record": {
|
||||
"CNAME": "xikizxgs.github.io"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"description": "domain verification for bluesky",
|
||||
"owner": {
|
||||
"username": "TheHCJ",
|
||||
"bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
|
||||
}
|
||||
}
|
||||
"description": "domain verification for bluesky",
|
||||
"owner": {
|
||||
"username": "TheHCJ",
|
||||
"bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "horibyte",
|
||||
"email": "thehoribyte@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:5ls3iv54vrppjxbs5ztocd75"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "domain verification for bluesky",
|
||||
"owner": {
|
||||
"username": "heyjumanji",
|
||||
"email": "madhuchutiya.unhinge50@silomails.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:nrjpabfv3zoxd6kiwr6fs4lq"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"description": "Domain verification for my Bluesky account.",
|
||||
"owner": {
|
||||
"username": "LIGMATV",
|
||||
"email": "ligmatv.id@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:pibkszlhfix34y257kqcozix"
|
||||
}
|
||||
"description": "Domain verification for my Bluesky account.",
|
||||
"owner": {
|
||||
"username": "LIGMATV",
|
||||
"email": "ligmatv.id@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:pibkszlhfix34y257kqcozix"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "itsFatlum",
|
||||
"email": "fatlum@lumi.is-a.dev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:c6m5rghb7tkmf5isd3pqjpbt"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "NarasimaPandiyan",
|
||||
"email": "cs42059@gmail.com",
|
||||
"discord": "gamingdoodle"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:u5uxl7mjlywolajtgso2ouoe"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "domain verification for bluesky",
|
||||
"owner": {
|
||||
"username": "not-coded",
|
||||
"discord": "notcoded",
|
||||
"discordUserID": "620662953347121163"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:hvgfiqmdl5sqcba2453dfpxe"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "nilsraccoon",
|
||||
"discord": "1129507464589627512"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:25w7vwbzb2e3h7cnflqskp37"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "Domain verification for my Bluesky account.",
|
||||
"owner": {
|
||||
"username": "razobeckett",
|
||||
"email": "razobeckett@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "did=did:plc:w6h4dilqruly6q4zki2mj5qt"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "TheRealCrazyfuy",
|
||||
"discord": "realabeja",
|
||||
"reddit": "crazyfuy"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=af03f42bbbaaca145280cdd080f105feb02a9145"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ajtabjs"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=44c33bd9561dd8d8079e707868adf359b0c5ff05"]
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "anirbaaaan183",
|
||||
"email": "anirbanrc@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=ef12f3d26e5f641e4a2f956c2a208b8da58b5c47"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "antebrl",
|
||||
"email": "ahcwnh@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"]
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "antebrl",
|
||||
"email": "ahcwnh@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=6d109bce7d0aeacdc4a573c959d85a778d239527"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "arsenobetaine",
|
||||
"email": "arsenobetaine@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=a7836fe0f1ee1642624faaa1e95fedba6f53f907"
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "cjolivier123"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=74c1e1cd4df113f2b79e799d4f0e5910ef8f9557"]
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "cjolivier123"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=74c1e1cd4df113f2b79e799d4f0e5910ef8f9557"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "octyn-yt",
|
||||
"email": "simplelogin-newsletter.idealize471@simplelogin.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=501251d3fa61ce8fb7a761606b9aa5e707eacd96"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Esbruiz",
|
||||
"email": "esbruizc@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=5421aaf1ad1aa267e9aa3d19c55d3762a0c5d8f8"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "CodeSoftGit",
|
||||
"email": "codesft@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=1d1f0586f56693138d2014b13312d7467fa4e497"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ColinLeDev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=f51bcf0f0dac685ca2a69541d3981cd689a1e96a"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "computerblade-official"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=63f08ebbf48f55ad7c1a25b6f4d3f2a8504dfb89"]
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "computerblade-official"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=63f08ebbf48f55ad7c1a25b6f4d3f2a8504dfb89"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ducky4life",
|
||||
"email": "duckylai@proton.me"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=925876829c7314b41fe3c2a412b7a4250214febf"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "DXRdev",
|
||||
"discordID": "335635478684499970",
|
||||
"discord": "elastrixx"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=146345133ea568500a36844c85d85ec0aead3bae"]
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "DXRdev",
|
||||
"discordID": "335635478684499970",
|
||||
"discord": "elastrixx"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=146345133ea568500a36844c85d85ec0aead3bae"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "TheHCJ",
|
||||
"bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=4d34d136feda8f0fade8d9cbf34cfb3ff0adee15"
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "TheHCJ",
|
||||
"bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=4d34d136feda8f0fade8d9cbf34cfb3ff0adee15"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "minodab492",
|
||||
"email": "heath.garvin@minodabproductions.dev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=5a45b7cd26a9cd21f027e4bbf1c010cac0b78204"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "verygafanhot",
|
||||
"email": "verygafanhot@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=772e8981e6a0b8bc4e30ac4af5160be7fd175c8a"
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Infernum1"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=b25f81ebab2ff999a86bbda2f49f609e03054b39"]
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "Infernum1"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=b25f81ebab2ff999a86bbda2f49f609e03054b39"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "PentSec",
|
||||
"email": "jeffreysfu@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=674aa7264cbcffb1d24dd630c38f8613ad822824"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "JonathanXDR",
|
||||
"email": "jonathan.russ@bluewin.ch",
|
||||
"discord": "494042822320717827"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=38d522d76c80c10c68fa083f015b65ef2986a91b"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "is-a-dev",
|
||||
"email": "admin@is-a.dev"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=d5273eca7d19d9a734f62376816c287bc2613ef7"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "heyjumanji",
|
||||
"email": "madhuchutiya.unhinge650@silomails.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=aa51fc97861c871fc4daece76efa42c15712f116"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "enderfoxbg",
|
||||
"discord": "970380468090437672"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=75e9bdc423ca4351bb8938087b552bc2ee9a3e16"]
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "tr1xem"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=2cd8606690feb1e7c8ed348d2875d718bb5b87f1"]
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "tr1xem"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=2cd8606690feb1e7c8ed348d2875d718bb5b87f1"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "RadioactivePotato",
|
||||
"discord": "krunchiekrunch._."
|
||||
"discord": "1166013268008120340"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=df2bf9fb87a1dc3ee29c6ddfa51ed86da28581c5"
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "liamatienza",
|
||||
"email": "liamdev@duck.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=c53cce4432aa366f65bd320ab681d468c8cea968"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "m3hu1",
|
||||
"email": "pathakkmehul@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=bb5a0d412e8f7f0b02dbf56d27610f20b99ac8a9"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "NarasimaPandiyan",
|
||||
"email": "cs42059@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=d54feeb331611626de2134ef368bdcf7691cbbb3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "lolinekord",
|
||||
"email": "contact@lolineko3.net"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=a761b99a6a7d449df2e423a119eab9a4ec773e7e"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "PrinceBunBun981",
|
||||
"email": "me@nick.cool",
|
||||
"discord": "nickwoah"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=b9e9ee170ceabd5d201a50225be187e055b9bbb6"
|
||||
}
|
||||
}
|
||||
@@ -1,12 +1,11 @@
|
||||
{
|
||||
"description": "niclqs.is-a.dev discord verify „ownership''",
|
||||
"repo": "https://github.com/niclqsger",
|
||||
"owner": {
|
||||
"discord": "niclqs",
|
||||
"email": "discord@push-den-weg.de",
|
||||
"username": "NiclqsGER"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=0b19779c5bdb5bdc6a6e3a5d7f44996deedab1dc"
|
||||
}
|
||||
"description": "niclqs.is-a.dev discord verify ownership",
|
||||
"owner": {
|
||||
"discord": "niclqs",
|
||||
"email": "discord@push-den-weg.de",
|
||||
"username": "NiclqsGER"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=0b19779c5bdb5bdc6a6e3a5d7f44996deedab1dc"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "nikyy2",
|
||||
"email": "anhky581@gmail.com",
|
||||
"discord": "1007521768761729094"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=eb8bcab3a2e8a1f278e7cb88404974b46f58a31c"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "IMXNOOBX",
|
||||
"email": "me@noob.bio"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=4bda89987e4e232aac78bb9d0a0e973c96166119"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "domain verification for discord",
|
||||
"owner": {
|
||||
"username": "not-coded",
|
||||
"discord": "notcoded",
|
||||
"discordUserID": "620662953347121163"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=0a6a5afd3a6ee9b2709a43a77e6679a2e9969384"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Nuggew",
|
||||
"email": "contato.guilherme.silva.araujo@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=a5d33ae1ddbac9692e675b562538f6b316f1aa1f"
|
||||
}
|
||||
}
|
||||
@@ -2,8 +2,7 @@
|
||||
"owner": {
|
||||
"username": "okineadev",
|
||||
"discord": "okineadev",
|
||||
"telegram": "okinea",
|
||||
"email": "81070564+okineadev@users.noreply.github.com"
|
||||
"telegram": "okinea"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=72f6dea86d79bda34d2c61e1edb3037954caac82"
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "profxadke",
|
||||
"email": "xadkeg@duck.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=35ca5646ff4cbe25158bef568c0e26c7224f5a61"]
|
||||
}
|
||||
"owner": {
|
||||
"username": "profxadke",
|
||||
"email": "xadkeg@duck.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=35ca5646ff4cbe25158bef568c0e26c7224f5a61"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "piker98988",
|
||||
"email": "iker.pavcur@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=fbea31b6c973108788a610db21edd08f23d92801"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "keydevelops",
|
||||
"email": "rumaevvadim@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=be4a0fbe37df16fa2d25e29ec7bc4f669703a71d"
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Roufox",
|
||||
"email": "gabrielruf.fr@gmail.com",
|
||||
"discord": "Roufox"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=c3f8c6ef337cccc45ed0c1fac8f1dbbb76b86271"
|
||||
}
|
||||
"owner": {
|
||||
"username": "Roufox",
|
||||
"discord": "Roufox"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=c3f8c6ef337cccc45ed0c1fac8f1dbbb76b86271"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "s8rr"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=02cb947f7961bbd1816cb3aa4d2d47854665515c"]
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "s8rr"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=02cb947f7961bbd1816cb3aa4d2d47854665515c"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "vqpe",
|
||||
"email": "theschuhofyou@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=7e4702912048b4ff69b652081db69782cd50ccf3"
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Delta-0mega"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=af891775cf595304f98791bd551966a1c2411fe4"]
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "Delta-0mega"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=af891775cf595304f98791bd551966a1c2411fe4"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "sepultrex",
|
||||
"email": "sepultrex@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=2f929b7a4935af1795801360d92ba2788e27a2ff"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Mikofoxie",
|
||||
"email": "shimizulazy@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=a24d14132caded8f17f5e4fdd4222378e8df2b89"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Ciao287",
|
||||
"discord": "687333016921440317"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=5b1ae56adf1959519abbb008b4803ee9911ff1b6"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "sxn4y",
|
||||
"discord": "5unn7n"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=cfe36ed36af73c3bdcfbfa23744d5826b64d1cfc"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "tat2008",
|
||||
"email": "tuan.trananh2008@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=9abe38f80f0a7adbf9ef20a7048ff7dd399d984b"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "ThangLe9999",
|
||||
"discord": "872078632565215282",
|
||||
"OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.G5BtkuOaAUmFdixUP1IN4ZTmec-NZCllzsliK6q8sggJkBzasXefGfeEh6pBOiZ6ZkV2gr-GCdTN7LkP7QLPgLN6FglXac8BP1DSGDF3Lo8ULvrM-CpLUdeR0mqes6OQVvWdmPhZgVFGF3ItzDXQ7SqB6zrMbEWEwuZeg2KLHyPqvHsdrWLjzNpvVUwZRBuxicPyNTT70oMbPaOn3cvg4J_mVxNywnrIY5F34-T4tmiOEijsHmPwG2RzHsTCzC3cGYfNmokQtAsL0jhIMH4GzYdbTUsjDOrqbLdT-W2y33pQkeQuCjdf8KkeYCfacE0oWAZKFhrW2X0zJLYvGQBeuw.3qY1yT9H2x2WH2DePTziiw.PJvjWBGxfTgCKqZiHuAsRaUEdjld3XeMAw7NwX9P28VSFOS3-xsSiOvbLrCo1n1nTF-4g8EIRkkFJPn2P1T6YUDNuHVqbvnGg2wfhpfdSaM.yxghx67x9iGLMjDEKJdeAw"
|
||||
},
|
||||
|
||||
"record": {
|
||||
"TXT": "dh=8d98fb5fefbb1915e89d5dc43c9fdd9fa801557f"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "tr1xem"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=ecefe601258bdf0c1e1e20adb05d84c7b7229995"]
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "tr1xem"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=ecefe601258bdf0c1e1e20adb05d84c7b7229995"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "VihaanAnand",
|
||||
"email": "macos14sonoma@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "dh=635f70c64c210c98011d4391e0ba6a69adfedc89"
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "webcubed"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=1612c48236f97b2a8b0fc79833cd7e46cf0c512d"]
|
||||
}
|
||||
}
|
||||
"owner": {
|
||||
"username": "webcubed"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["dh=1612c48236f97b2a8b0fc79833cd7e46cf0c512d"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "DMARC",
|
||||
"owner": {
|
||||
"username": "QuinceTart10",
|
||||
"discord": "862644161156218891"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "v=DMARC1; p=quarantine; sp=none; adkim=r; aspf=r; fo=1; rua=mailto:me@quincetart10.is-a.dev; ruf=mailto:me@quincetart10.is-a.dev; rf=afrf; pct=100; ri=86400"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "Ciao287",
|
||||
"discord": "687333016921440317"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "v=DMARC1; p=none; rua=mailto:dmarc.report@ciaobot.is-a.dev; ruf=mailto:dmarc.report@ciaobot.is-a.dev; fo=0; adkim=r; aspf=r; pct=100; ri=86400; sp=none"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "peme969",
|
||||
"email": "mrcoderpeme@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": [
|
||||
"forward-email=NjNhNjJlMjMzOGJhMWUxNy1hOTk2MzljYmY0ZDczZWViZDY2NTljZmUwMDc4OTM5MmQ3YmVjN2RmYWEyMjFlN2VhODAxZWUwOWI5ODhhNDY2"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "DMARC",
|
||||
"owner": {
|
||||
"username": "QuinceTart10",
|
||||
"discord": "862644161156218891"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "v=DMARC1; p=quarantine; sp=none; adkim=r; aspf=r; fo=1; rua=mailto:me@quincetart10.is-a.dev; ruf=mailto:me@quincetart10.is-a.dev; rf=afrf; pct=100; ri=86400"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "DMARC",
|
||||
"owner": {
|
||||
"username": "QuinceTart10",
|
||||
"discord": "862644161156218891"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "v=DMARC1; p=quarantine; sp=none; adkim=r; aspf=r; fo=1; rua=mailto:me@quincetart10.is-a.dev; ruf=mailto:me@quincetart10.is-a.dev; rf=afrf; pct=100; ri=86400"
|
||||
}
|
||||
}
|
||||
+9
-10
@@ -1,12 +1,11 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "yz9551",
|
||||
"email": "",
|
||||
"discord": "yz9551"
|
||||
},
|
||||
"record": {
|
||||
"TXT": [
|
||||
"v=DMARC1; p=reject; pct=100; rua=mailto:dmarc-reports@yxz.is-a.dev; ruf=mailto:forensic-reports@yxz.is-a.dev; adkim=r; aspf=r"
|
||||
]
|
||||
}
|
||||
"owner": {
|
||||
"username": "yz9551",
|
||||
"discord": "yz9551"
|
||||
},
|
||||
"record": {
|
||||
"TXT": [
|
||||
"v=DMARC1; p=reject; pct=100; rua=mailto:dmarc-reports@yxz.is-a.dev; ruf=mailto:forensic-reports@yxz.is-a.dev; adkim=r; aspf=r"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"description": "JustStudio.",
|
||||
"owner": {
|
||||
"username": "JustDeveloper1",
|
||||
"email": "support@juststudio.is-a.dev",
|
||||
"discord": "1117482901353812088"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["d878bca923"]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "LUMIDevelopment"
|
||||
},
|
||||
"record": {
|
||||
"TXT": ["eade7c5be7"]
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,5 @@
|
||||
{
|
||||
"description": "Github Orgs Verify",
|
||||
"repo": "https://github.com/thenoppy12",
|
||||
"owner": {
|
||||
"username": "BussyBakks",
|
||||
"email": "lengochuykiengiang@gmail.com",
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "0v90",
|
||||
"discord": "651519394673065989"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "9e58408bb4a7267e5a81669f75cfb3"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"owner": {
|
||||
"username": "256javy",
|
||||
"email": "256javiervillalba@gmail.com"
|
||||
},
|
||||
"record": {
|
||||
"TXT": "5274c84dbbf074d67b53fc4305ced5"
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user